From fe672fb5893c8164b38238f8e7fe7816fb98bc5a Mon Sep 17 00:00:00 2001 From: CarmenTamayo Date: Tue, 30 Jan 2024 11:44:40 +0000 Subject: [PATCH] Moved description of code about loading libraries inside corresponding rmd chunk --- .../templates/transmissibility/skeleton/skeleton.Rmd | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/inst/rmarkdown/templates/transmissibility/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/transmissibility/skeleton/skeleton.Rmd index eaeb5d7..db2f3a5 100644 --- a/inst/rmarkdown/templates/transmissibility/skeleton/skeleton.Rmd +++ b/inst/rmarkdown/templates/transmissibility/skeleton/skeleton.Rmd @@ -203,13 +203,11 @@ knitr::include_graphics("transmissibility_pipeline.svg") # Data preparation -## Loading libraries +```{r, include=FALSE} +#The following code loads required packages; missing packages will be installed +#automatically, but will require a working internet connection for the +#installation to be successful. -The following code loads required packages; missing packages will be installed -automatically, but will require a working internet connection for the -installation to be successful. - -```{r} library(dplyr) library(ggplot2) library(forcats)