These exercises follow the material in Reproducible
R.
Exercise 1 - Packages and R
- What version of R are you using?
- What version of ggplot2 do you have?
- What version of Bioconductor are you using?
library(BiocManager)
version()
- Load in Rmarkdown, ggplot2 and plotly. How many packages do I have
loaded in now?
library(rmarkdown)
library(ggplot2)
library(plotly)
sessionInfo()
Exercise 2 - Renv
- Create a new project
- Initialize a Renv for this project
- scriptToConvertToRMarkdown.r into this project
- Update the status and create a snapshot
- Create another new project and add all the essential files to this
new project. Use Renv to restore the environment in the new
project.