diff --git a/DESCRIPTION b/DESCRIPTION index 0ddac9e0..61094202 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: sitrep Title: Report templates and helper functions for applied epidemiology -Version: 0.2.2 +Version: 0.2.3 Authors@R: c(person(given = "Alexander", family = "Spina", diff --git a/vignettes/Outbreaks_Walkthrough.Rmd b/vignettes/Outbreaks_Walkthrough.Rmd index c6ef141f..e9d3e485 100644 --- a/vignettes/Outbreaks_Walkthrough.Rmd +++ b/vignettes/Outbreaks_Walkthrough.Rmd @@ -167,7 +167,8 @@ pacman::p_load( sf, # encode spatial vector data ggspatial, # plot maps purrr, # iterate over data - ggrepel # text on maps + ggrepel, # text on maps + DT # interactive tables for this walkthrough ) ``` diff --git a/vignettes/Surveys_Walkthrough.Rmd b/vignettes/Surveys_Walkthrough.Rmd index 181c5b47..32c2b1a1 100644 --- a/vignettes/Surveys_Walkthrough.Rmd +++ b/vignettes/Surveys_Walkthrough.Rmd @@ -297,7 +297,8 @@ pacman::p_load( labelled, # add labels to variables matchmaker, # recode datasets with dictionaries lubridate, # working with dates - parsedate # guessing dates + parsedate, # guessing dates + DT # interactive tables for this walkthrough ) ```