From e09e5b7ded50f5d5e74a62d3be4f43110edde08d Mon Sep 17 00:00:00 2001 From: hillarymarler Date: Mon, 13 Jan 2025 12:23:33 -0500 Subject: [PATCH] Update TADAAssessmentUnitUseCase.Rmd potential bug fix --- vignettes/articles/TADAAssessmentUnitUseCase.Rmd | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/vignettes/articles/TADAAssessmentUnitUseCase.Rmd b/vignettes/articles/TADAAssessmentUnitUseCase.Rmd index 363975d2..e7acb6a8 100644 --- a/vignettes/articles/TADAAssessmentUnitUseCase.Rmd +++ b/vignettes/articles/TADAAssessmentUnitUseCase.Rmd @@ -72,9 +72,21 @@ for TADA package installation instructions.) We'll also record the start time for our analysis, beginning after loading packages. +```{r install_TADA_dev, eval = T, include = F} + +# help with knit and pass the checks, but we want to make sure this chunk does not show up in the final website, just for development. + +remotes::install_github("USEPA/EPATADA", ref = "482-create-tadamonitoringlocationidentifier-in-tada_autoclean", dependencies = TRUE ) + +``` + +```{r install_TADA, eval = F, results = 'hide'} +remotes::install_github("USEPA/EPATADA", ref = "develop", dependencies = TRUE ) + +``` + ```{r library, results = 'hide'} -# Load required packages -library(EPATADA) +# Load other packages library(dplyr) library(yaml) library(lwgeom)