Skip to content

fix CRAN issues #309

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

Merged
merged 17 commits into from
Sep 22, 2022
Prev Previous commit
Next Next commit
update deprecated element_line syntax
  • Loading branch information
sbfnk committed Sep 14, 2022
commit 22f7f63937ddce7b7494b29506067da577e20589
4 changes: 2 additions & 2 deletions R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ plot_estimates <- function(estimate, reported, ylab = "Cases", hline,
ggplot2::geom_line(
data = reported,
ggplot2::aes(y = confirm, fill = NULL),
size = 1.1, alpha = 0.5, col = "black", na.rm = TRUE
linewidth = 1.1, alpha = 0.5, col = "black", na.rm = TRUE
) +
ggplot2::geom_point(
data = reported,
ggplot2::aes(y = confirm, fill = NULL),
size = 1.1, alpha = 1, col = "black",
linewidth = 1.1, alpha = 1, col = "black",
show.legend = FALSE, na.rm = TRUE
)
}
Expand Down