This function compares two comparators based on the subset of forecasts for
which both comparators have made a prediction. The overlapping forecasts
are found by merging the scores of the two comparators on the forecast
unit. The actual comparison is then done by compare_scores().
pairwise_comparison_one_group() does not call this function; it aligns
all comparators at once via pivot_scores(). compare_forecasts() is
kept as a reference implementation for testing.
Usage
compare_forecasts(
scores,
compare = "model",
name_comparator1,
name_comparator2,
metric,
one_sided = FALSE,
test_type = c("non_parametric", "permutation", NULL),
n_permutations = 999
)Arguments
- scores
An object of class
scores(a data.table with scores and an additional attributemetricsas produced byscore()).- compare
Character vector with a single colum name that defines the elements for the pairwise comparison. For example, if this is set to "model" (the default), then elements of the "model" column will be compared.
- name_comparator1
Character, name of the first comparator
- name_comparator2
Character, name of the comparator to compare against
- metric
A string with the name of the metric for which a relative skill shall be computed. By default this is either "crps", "wis" or "brier_score" if any of these are available.
- one_sided
Boolean, default is
FALSE, whether two conduct a one-sided instead of a two-sided test to determine significance in a pairwise comparison.- test_type
Character, either "non_parametric" (the default), "permutation", or NULL. This determines which kind of test shall be conducted to determine p-values. If NULL, no test will be conducted and p-values will be NA.
- n_permutations
Numeric, the number of permutations for a permutation test. Default is 999.
