Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove svg setting #551

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ edf %>%
autoplot(smoothed_cases_daily)
```

<img src="man/figures/README-unnamed-chunk-7-1.svg" width="90%" style="display: block; margin: auto;" />
<img src="man/figures/README-unnamed-chunk-7-1.png" width="90%" style="display: block; margin: auto;" />
Binary file added man/figures/README-unnamed-chunk-7-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion vignettes/_common.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
cache = TRUE,
dev = "svg",
dev.args = list(bg = "transparent"),
dpi = 300,
cache.lazy = FALSE,
Expand Down
2 changes: 1 addition & 1 deletion vignettes/epiprocess.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ edf %>%
Detect outliers in daily reported cases for each geo_value. For a more in-depth
guide to outlier detection, see `vignette("outliers")`.

```{r}
```{r message=FALSE}
edf %>%
group_by(geo_value) %>%
mutate(outlier_info = detect_outlr(x = time_value, y = cases_daily)) %>%
Expand Down
Loading