This project contains code and files from an R course.
The following folders contain:
data/
: The data ready for an analysisdoc/
: Quarto filesR/
: R scripts.
If dependencies have been managed by using
usethis::use_package("packagename")
through the DESCRIPTION
file,
installing dependencies is as easy as opening the AdvancedR3.Rproj
file and running this command in the console:
# install.packages("remotes")
remotes::install_deps()
You'll need to have remotes installed for this to work.
For more information on this folder and file workflow and setup, check out the prodigenr online documentation.