scoringutils icon indicating copy to clipboard operation
scoringutils copied to clipboard

Utilities for Scoring and Assessing Predictions

Results 177 scoringutils issues
Sort by recently updated
recently updated
newest added

The main source of this request is the following example where we use `add_relative_skill` to compute a relative absolute error, which generates a bunch of warnings from p-value computations which...

Would be nice to see what each score means when you print out the output of the function. This could be a simple print method that adds a simple "see...

Just noting that this has been fixed in `{distributional}` so the optional dependency could be removed once that's on CRAN. _Originally posted by @sbfnk in https://github.com/epiforecasts/scoringutils/issues/917#issuecomment-2413363824_

good first issue
low-priority

We could add additional functions / additional arguments to `get_metrics()`. Consider something like this: ``` get_metrics( example_quantile, exclude = c("ae_median"), replace = c(wis, purrr::partial(wis, na.rm = TRUE), add_args = c(wis,...

enhancement
feature request

There is this nice diagram that plots forecast probabilities for targets that resolved yes vs. no. Ideally, a forecaster should assign lots of probability to targets that resolve yes and...

enhancement
feature request

We have a lot of functions like `check_input_binary()`, ... in addition to the `assert_input_binary()` etc. We used them a while ago, but we're wiser now and I think they can...

refactor

The function is used for both binary and point forecasts, so we should make that clearer in the name. In the spirit of having code for different forecasting classes more...

refactor
low-priority

We have this visualisation: ![image](https://github.com/user-attachments/assets/d4c690e5-abc5-4c9f-9d4c-c0ae0d4e0ccd) generated by this code: ``` library(data.table) library(dplyr) library(scoringutils) library(ggplot2) library(tidyr) library(patchwork) ## Real Data ex filter(model == "EuroCOVIDhub-ensemble") scores score() setnames(scores, old = c("dss", "crps",...

documentation