Session 1: R project setup and Quarto documents
Reproducibility
Your data analysis project should be self-contained, which means that everything that is needed to reproduce the results is stored in the project folder.
This is what a minimal R project setup looks like:
**bold**
*italics*
install.packages()
library()
## R setup
, where you load the packages you need<-
(shortcut: Alt + -)function(argument = "...")
str()
head()
mean()
, median()
$
Time for practice! The tasks are available here. (there is also a link on my website)