Confidence intervals for scores from aggregate_stat job for GridStat output. #1017
-
Hello! Below are the jobs I use: "-job aggregate_stat -line_type FHO -out_line_type CTS -fcst_thresh >=0.1 -obs_thresh >=0.1 -dump_row $output/$exp/stat_analysis/job_aggregate_stat_CTS.stat", "-job aggregate_stat -line_type SL1L2 -out_line_type CNT -dump_row $output/$exp/stat_analysis/job_aggregate_stat_CNT.stat" ]; Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello Anastasia, I see you have a question about whether or not the Stat-Analysis tool can compute confidence intervals. While it does compute parametric CI's and populate the *_NCL and *_NCU output columns, it does NOT, in general, compute bootstrap confidence intervals during the aggregate_stat job type. So the *_BCL and *_BCU output columns generally contain NA. The only exception to that is when aggregating MPR lines from the Point-Stat output file. Stat-Analysis calls the same library code that Point-Stat does to bootstrap those MPR lines. So you can get bootstrap CI's for a job like:
But when aggregating FHO and SL1L2 lines to compute CTS and CNT output, respectively, as in your examples, no bootstrapping logic is implemented. This isn't the first time this request has arisen. Here's an existing GitHub issue for this feature request: And that issue has existing for a whopping 10 years! Our development team has never done this task because we use METviewer instead. The METviewer database and display system DOES have the ability to bootstrap this type of aggregation and compute CI's. The DTCenter relies heavily on METviewer for this type of analysis, and that feature request has never risen high enough in priority. Hope that helps clarify. |
Beta Was this translation helpful? Give feedback.
Hello Anastasia,
I see you have a question about whether or not the Stat-Analysis tool can compute confidence intervals. While it does compute parametric CI's and populate the *_NCL and *_NCU output columns, it does NOT, in general, compute bootstrap confidence intervals during the aggregate_stat job type. So the *_BCL and *_BCU output columns generally contain NA.
The only exception to that is when aggregating MPR lines from the Point-Stat output file. Stat-Analysis calls the same library code that Point-Stat does to bootstrap those MPR lines. So you can get bootstrap CI's for a job like:
But when aggregating FHO an…