For the BASV94 course
-
Setup the RStudio environment by cloning the repository
-
Activate
renv
by runningrenv::activate()
. You might need to installrenv
by runninginstall.packages("renv ")
. -
Run
renv::restore()
to install the package with the version. Sayy
toDo you want to proceed? [y/N]:
Complete the practicals and push to the repository.
The Rmd document are pre-filled, modify the header.
Currently it is the following:
---
title: "My answers"
author: "May name"
date: "2021-10-22"
---
Your tasks:
- Replace the title by either
dplyr
orggplot2
practical - Replace the author name by yours
- Fix the date for today following the ISO8610 norm:
YYYY-MM-DD
- Save the file
- Commit the changes
- Push to the github classroom
- Fill out the answer in the R chunks (default filled with a comment
# Write your answer here
) - Knit the Rmd to check if everything works well
- If you use a new package (i.e
palmerpenguis
), update therenv.lock
withrenv::snapshot()
, new package are discovered, sayy
to[yN]
Git
add therenv.lock
, along with the completed RmdGit
push