Get the scores for every day for a location, forecast date, and scenario from the quantiles during the forecast period
Source:R/score.R
get_scores_from_quantiles.Rd
Uses scoringutils to transform data and predictions using a log transform with a log shift of 1, and return the default scoring metrics
Arguments
- quantiles
a dataframe of the model estimated quantiles alongside the data you are evaluating against, during the nowcast and forecast period only
- scenario
a string indicating the wastewater data scenario we're running
- metrics
Vector of scoring metrics to output, passed as the
metrics
argument toscoringutils::score()
. Default is NULL which will include all scoring metrics for quantiles by default, includingc("interval_score", "coverage", "dispersion", "bias")
.