Skip to content

Commit

Permalink
Per #1843, update write_cntinfo() function. Since we're READING the S…
Browse files Browse the repository at this point in the history
…I value immediately after the RMSE value when computing CI's, we also need to write SI immediately after RMSE. Otherwise, we'll be computing CI's using the wrong statistics replicates.
  • Loading branch information
JohnHalleyGotway committed Jul 28, 2021
1 parent 54b0e33 commit 20cbc8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions met/src/libcode/vx_statistics/compute_ci.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3908,9 +3908,9 @@ void write_cntinfo(ofstream &tmp_out, const CNTInfo &c) {
c.rmsfa.v, c.rmsoa.v, c.anom_corr_uncntr.v,
c.me.v, c.me2.v, c.estdev.v, c.mbias.v,
c.mae.v, c.mse.v, c.msess.v, c.bcmse.v,
c.rmse.v, c.e10.v, c.e25.v, c.e50.v,
c.e75.v, c.e90.v, c.eiqr.v, c.mad.v,
c.si.v);
c.rmse.v, c.si.v, c.e10.v, c.e25.v,
c.e50.v, c.e75.v, c.e90.v, c.eiqr.v,
c.mad.v);

tmp_out << line << "\n";

Expand Down

0 comments on commit 20cbc8d

Please sign in to comment.