summary.epinowcast | R Documentation |
summary
method for class "epinowcast".
## S3 method for class 'epinowcast'
summary(
object,
type = c("nowcast", "nowcast_samples", "fit", "posterior_prediction"),
max_delay = object$max_delay,
...
)
object |
A |
type |
Character string indicating the summary to return; enforced by
|
max_delay |
Maximum delay to which nowcasts should be summarised. Must be equal (default) or larger than the modelled maximum delay. If it is larger, then nowcasts for unmodelled dates are added by assuming that case counts beyond the modelled maximum delay are fully observed. |
... |
Additional arguments passed to summary specified by |
A summary data.frame
summary epinowcast
Other epinowcast:
epinowcast()
,
plot.epinowcast()
nowcast <- enw_example("nowcast")
# Summarise nowcast posterior
summary(nowcast, type = "nowcast")
# Nowcast posterior samples
summary(nowcast, type = "nowcast_samples")
# Nowcast model fit
summary(nowcast, type = "fit")
# Posterior predictions
summary(nowcast, type = "posterior_prediction")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.