Skip to content

Commit

Permalink
fix lintr checks
Browse files Browse the repository at this point in the history
  • Loading branch information
avallecam committed Jun 11, 2024
1 parent d8dd30e commit da9d80b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions episodes/model-choices.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ output <- model_ebola(
replicates = 1 # replicates argument
)
output %>%
filter(compartment == "infectious") %>%
output %>%
filter(compartment == "infectious") %>%
ggplot() +
geom_line(
aes(time, value),
Expand Down Expand Up @@ -374,7 +374,7 @@ output_replicates <- model_ebola(
replicates = 100 # replicates argument
)
output_replicates %>%
output_replicates %>%
filter(compartment == "infectious") %>%
ggplot(
aes(time, value)
Expand Down

0 comments on commit da9d80b

Please sign in to comment.