December 2017
Beginner to intermediate
470 pages
12h 29m
English
Code chunks are simply standard Markdown code blocks, which have a special syntax that uses curly braces ({}) along the top line of the block to send metadata to knitr, about how the block should be treated. The metadata sent is in the form of parameters with the key = value format. We'll cover more on this in the Chunk options section.
When you use a block header like (```{r chunk-label}), knitr knows that it's an R code block which will be identified with the chunk-label label. The chunk label is not a requirement, and if you do not specify one, one will be automatically created for you, but they are useful when trying to remember the purpose of a code block and to reference images (more on this later).
Finally, you should note ...