Skip to content

Commit

Permalink
Sets include to FALSE in setup block
Browse files Browse the repository at this point in the history
- Unwanted output from the remotes install statement was included in the
  html. This change removes the output.
  • Loading branch information
tristan-myles committed Apr 24, 2024
1 parent 858a4a8 commit 47a8fd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vignettes/pathogen_lassa.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ All Figures from the paper are re-produced below on the **latest** available dat
}
```

```{r setup, echo=FALSE, message=FALSE, warning=FALSE}
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
source(file.path("..", "shared", "lassa_functions.R"))
Expand Down
2 changes: 1 addition & 1 deletion vignettes/pathogen_marburg.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ All Tables and Figures from the paper are re-produced below on the **latest** av
```


```{r setup, echo=FALSE, message=FALSE, warning=FALSE}
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
remotes::install_github("mrc-ide/[email protected]")
library(epireview)
Expand Down

0 comments on commit 47a8fd8

Please sign in to comment.