Chunk options
Chunk output can be customized with options.
You can see the full list at https://yihui.org/knitr/options.
Each of these chunk options get added to the header of the chunk, following
#|.

- The main options are:
eval: falseprevents code from being evaluated. And obviously if the code is not run, no results will be generated.include: falseruns the code, but doesn’t show the code or results in the final document.echo: falseprevents code, but not the results from appearing in the finished file.message: falseorwarning: falseprevents messages or warnings from appearing in the finished file.results: hidehides printed output;fig-show: hidehides plots.error: truecauses the render to continue even if code returns an error. This is rarely something you’ll want to include in the final version of your report, but can be very useful if you need to debug exactly what is going on inside your.qmd. It’s also useful if you’re teaching R and want to deliberately include an error. The default,error: falsecauses rendering to fail if there is a single error in the document.