Skip to content

Commit

Permalink
Fix duplications in metrics data
Browse files Browse the repository at this point in the history
  • Loading branch information
nikosbosse committed Nov 20, 2023
1 parent 6d556f1 commit 29787bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified data/metrics.rda
Binary file not shown.
8 changes: 4 additions & 4 deletions inst/create-metric-tables.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ library(data.table)

ae <- list(
`Metric` = "Absolute error",
`Name` = list("ae_point", "ae_median"),
`Name` = "ae_point, ae_median",
`Functions` = r"(score(), ae_point()), ae_median_sample()",
`D` = r"($\checkmark$)",
`C` = r"($\checkmark$)",
Expand All @@ -18,7 +18,7 @@ ae <- list(

se <- list(
`Metric` = "Squared error",
`Name` = list("se_point", "se_mean"),
`Name` = "se_point, se_mean",
`Functions` = r"(score(), se_point(), se_mean_sample())",
`D` = r"($\checkmark$)",
`C` = r"($\checkmark$)",
Expand Down Expand Up @@ -164,7 +164,7 @@ bias <- list(

under_overprediction <- list(
`Metric` = "Under-, Over-prediction",
`Name` = list("underprediction", "overprediction"),
`Name` = "underprediction, overprediction",
`Functions` = r"(score(), interval_score())",
`D` = r"($-$)",
`C` = r"($-$)",
Expand Down Expand Up @@ -212,7 +212,7 @@ relative_skill <- list(

scaled_relative_skill <- list(
`Metric` = "Scaled relative skill",
`Name` = list("scaled_rel_skill"),
`Name` = "scaled_rel_skill",
`Functions` = r"(score(), pairwise_comparison())",
`D` = r"($\sim$)",
`C` = r"($\sim$)",
Expand Down
2 changes: 1 addition & 1 deletion man/metrics.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 29787bc

Please sign in to comment.