I have a few plotting chunks in an .Rmd file.
I would like to have a chunk that calls only theses specific chunks. Example follows:
### Plot A
```{r 1 - PlotA}
X <- 1
y <- 5
```
### Plot B
```{r 2 - PlotB}
print(X + y)
```
### Troubleshoot
```{r 3 - TB}
X <- 8 # a modification of 'X'
# Want to call chunk "Plot B"
```