These exercises follow the material in Reproducible R.

Exercise 1 - Rmarkdown basics

# Different Styles in YAML
# Updated table of contents in YAML
# Set Up chunk - we can use this to control defaults for code chunk arguments. In this case we have turned echo off for every chunk. 

Exercise 2 - Convert a Rmarkdown

Exercise 3 - Make a Rmarkdown - Make your own Rmarkdown document from scratch - Include YAML parameters like date - Read in file “readThisTable.csv” - Run some summary stats and plots - Use chunk arguments: fig.height/fig.width/fig.path/dev to save plots in pdf and png format

Exercise 4 - Quarto - Convert your Rmd from exercise 2 into a Quarto document - Keep the parameters the same. Render and review the result. Compare it to the Rmd output. - Try and update all code arguments

Additional Exercise - Take some of your own scripts. They can either be python or R. Try and convert them into an Rmarkdown/Quarto format so you can create a nice report summary of that piece of work.