I am starting to write a simple book using Bookdown. I note that tables and figures can be generated using Knitr. However, I'm struggling to see where the data for a table or a figure is stored.
The example provided at: https://bookdown.org/yihui/bookdown/ uses the following code:
```{r nice-tab, tidy=FALSE}
knitr::kable(
head(iris, 20), caption = 'Here is a nice table!',
booktabs = TRUE
)
```
However, I don't see a file containing the data for the 'nice' table among the files that are part of the package (or, similarly, the images that are used for figures).
I'd appreciate anybody who could point me in the right direction please.