We would like to be able to score probabilistic forecasts along with point forecasts. Then, all metrics should be composed to a final data.table.
scores_probabilistic <- example_continuous |>
score()
scores_point <- example_continuous |>
as_point(statistic = "median") |>
score()
scores <- c(scores_probabilistic, scores_point)