Skip to content

Commit

Permalink
more linter appeasement
Browse files Browse the repository at this point in the history
  • Loading branch information
elray1 committed Apr 25, 2024
1 parent 428bb8c commit c2a2280
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions vignettes/forecast_data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -159,18 +159,21 @@ ggplot() +
geom_line(
mapping = aes(x = output_type_id, y = value,
color = "forecast", linetype = "forecast"),
data = forecasts_to_plot) +
data = forecasts_to_plot
) +
geom_line(
mapping = aes(x = output_type_id, y = observation,
color = "observation", linetype = "observation"),
data = target_observations_to_plot,
) +
scale_color_manual(
"CDF",
values = c("black", "orange")) +
values = c("black", "orange")
) +
scale_linetype_manual(
"CDF",
values = c(1, 2)) +
values = c(1, 2)
) +
facet_wrap(vars(target_end_date)) +
xlab("output_type_id (units are hospital admissions per 100,000 population)") +
ylab("CDF value (units are probability)")
Expand Down

0 comments on commit c2a2280

Please sign in to comment.