Closed jamesmbaazam closed 2 months ago
When the distribution parameters are uncertain, the plot is quite busy. Should we facet by distribution type in that case instead of using different line types?
library(EpiNow2)
#>
#> Attaching package: 'EpiNow2'
#> The following object is masked from 'package:stats':
#>
#> Gamma
suppressWarnings(
plot(
Gamma(mean = Normal(3, 2), sd = Normal(1, 0.1), max = 10)
)
)
Created on 2024-09-19 with reprex v2.1.1
ah interesting. I'm not sure we should facet by default but perhaps do it here as a demonstration?
We should re-compile this after merging #788 .
Thanks.
Description
This PR closes #778 by plotting some of the distributions that are specified in the workflow vignette. This will help expose the distribution plotting functionality more.
Initial submission checklist
devtools::test()
anddevtools::check()
).devtools::document()
).lintr::lint_package()
).After the initial Pull Request