diff --git a/meteor_packages/mats-common/imports/startup/server/data_util.js b/meteor_packages/mats-common/imports/startup/server/data_util.js index f52b936bd..f1ec68632 100644 --- a/meteor_packages/mats-common/imports/startup/server/data_util.js +++ b/meteor_packages/mats-common/imports/startup/server/data_util.js @@ -613,7 +613,6 @@ const consolidateContour = function (d, dTemp, statType, xAxisParam, yAxisParam) // which statistics are excluded from scorecards? const excludeStatFromScorecard = function (stat) { const statsToExclude = [ - "Bias (forecast/actual)", "Nlow (Number of obs < threshold (hits + misses))", "Nhigh (Number of obs > threshold (hits + misses))", "All observed yes", @@ -629,7 +628,6 @@ const excludeStatFromScorecard = function (stat) { "N", "Model average", "Obs average", - "Std deviation", "MAE (station plots only)", ]; return statsToExclude.indexOf(stat) !== -1;