S3 generic for plotting
Usage
plot(df, ...)
# S3 method for class 'incidence'
plot(df)
# S3 method for class 'growth_rate'
plot(df)
# S3 method for class 'Rt'
plot(df)
# S3 method for class 'proportion'
plot(df)
Examples
if (FALSE) { # \dontrun{
mod <- construct_model(
method = random_walk(),
pathogen_structure = single(
case_timeseries = sarscov2$cases,
time = sarscov2$date))
fit <- fit_model(mod)
gr <- growth_rate(mod)
plot(gr)
} # }