MET 8.1: Frequency of Superior Performance with TC-Stat #1033
-
Good afternoon, I'm wondering how to appropriately use the TC-Stat summary job in MET 8.1 to obtain frequency of superior performance for a list of a-deck models. I'm verifying eight amodels, using the following job summary statement in the config file: "-job summary -line_type TCMPR -column TK_ERR -by AMODEL,LEAD" I hoped this would give me each amodel's frequency of superior performance for TK_ERR at each lead time. For example, the frequency that a given model's 12-hour track forecast error was better than that of the other seven models. However, instead, the FSP_TOTAL, FSP_BEST, and FSP_TIES columns are all filled with 0s. How should I change my job summary statement to get the desired result? Please let me know if I can provide any additional information or clarification. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Willy, I see you have a question about computing the Frequency of Superior Performance (FSP) for the tc_stat tool in MET version 8.1. As you note, these columns are included in the "summary" job type for tc_stat. I've attached a sample data file, that's output from the tc_pairs tool, to demonstrate: I tried running a simple command line job like you did, and also got all 0's in the FSP columns:
The key detail here is that FSP can only be computed when you have exactly the same cases for each model. To enable the event equalization logic, you need to add the "-event_equal TRUE" job command option (it's false by default). So adding that I get:
But note that all of the lines are discarded because there are no cases common to ALL of the models present. Next, instead of looking at all the models present, I'll only look at 2 of them that have a lot of cases.
And that does compute FSP values of .29688 and .64602 for the AHWI and BCLP models, respectively. Those add up to .9429 which means that "ties" occur at a rate of .0571. So I suspect that you'll need to add the "-event_equal TRUE" job command option. If all of the cases get tossed out, consider using "-amodel" to filter down to a subset of models for which you have plenty of cases. |
Beta Was this translation helpful? Give feedback.
Hi Willy, I see you have a question about computing the Frequency of Superior Performance (FSP) for the tc_stat tool in MET version 8.1. As you note, these columns are included in the "summary" job type for tc_stat.
I've attached a sample data file, that's output from the tc_pairs tool, to demonstrate:
alal2010_V8.1.tcst.txt
Note that I added a ".txt" suffix to this file so that GitHub would enable me to upload it.
I tried running a simple command line job like you did, and also got all 0's in the FSP columns:
The key detail here is that FSP can only be computed when you have exactly th…