Skip to content

Commit

Permalink
mae and mae_oerr stat is added #434
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaBurek committed Nov 4, 2022
1 parent d507c00 commit 14baab9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
9 changes: 9 additions & 0 deletions java/edu/ucar/metviewer/MVUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,15 @@ public class MVUtil {
statsEcnt.put("ECNT_CRPSCL_EMP", new String[]{ECNT});
statsEcnt.put("ECNT_CRPSS_EMP", new String[]{ECNT});
statsEcnt.put("ECNT_CRPS_EMP_FAIR", new String[]{ECNT});
statsEcnt.put("ECNT_SPREAD_MD", new String[]{ECNT});
statsEcnt.put("ECNT_MAE", new String[]{ECNT});
statsEcnt.put("ECNT_MAE_OERR", new String[]{ECNT});
statsEcnt.put("ECNT_BIAS_RATIO", new String[]{});
statsEcnt.put("ECNT_N_GE_OBS", new String[]{});
statsEcnt.put("ECNT_ME_GE_OBS", new String[]{});
statsEcnt.put("ECNT_N_LT_OBS", new String[]{});
statsEcnt.put("ECNT_ME_LT_OBS", new String[]{});

statsEcnt.put("ECNT_TOTAL", new String[]{ECNT});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1926,7 +1926,9 @@ public List<String> buildPlotSql(
+ "\n ld.crpscl_emp,"
+ "\n ld.crpss_emp,"
+ "\n ld.crps_emp_fair,"
+ "\n ld.spread_md";
+ "\n ld.spread_md,"
+ "\n ld.mae,"
+ "\n ld.mae_oerr";
} else if (job.getAggPct()) {

if (job.getPlotTmpl().equals("eclv.R_tmpl")) {
Expand Down

0 comments on commit 14baab9

Please sign in to comment.