Get plot of fit and forecasted counts
Usage
get_plot_forecasted_counts(
draws,
forecast_date,
count_data_eval = NULL,
count_data_eval_col_name = NULL,
count_type = "hospital admissions",
n_draws_to_plot = 100
)
Arguments
- draws
A dataframe containing the posterior draws with the data joined to it. This is the
draws_df
output of a call towwinference()
. It expects the following column names:date
,pred_value
,draw
, andname
- forecast_date
A string indicating the date we made the forecast, for plotting, in ISO8601 format YYYY-MM-DD
- count_data_eval
A dataframe containing the count data we will evaluate the forecasts against. Must contain the columns
date
and a column indicating the count data to evaluate against, with the name of that column specified as thecount_data_eval_col_name
. Default is NULL, which will result in no evaluation data being plotted.- count_data_eval_col_name
string indicating the name of the count data to evaluate against the forecasted count data. Default is NULL, corresponding to no evaluation data being plotted.
- count_type
A string indicating what data the counts refer to, default is
hospital admissions
- n_draws_to_plot
An integer indicating how many draws from the posterior to include in the plot, default is
100