Calc metric over init or member - how to make it flexible
See original GitHub issueIt would be nice to have the compute functions in a way that they only check for predictability over the member dimension, so the ensemble dimension is free to be plotted.
Now compute results only time
as lead time. Then it would also give ensemble
or initialization
, so we can get a Lead year timeseries over the ensemble space.
This nicely shows how prediction skill is not constant but very dependent of initialization state. http://hdl.handle.net/21.11116/0000-0002-0A63-4 Fig. 6.1
Need to adapt computes and remove mean over all ensembles.
Propose: add flag mean_forecast=True
as is, as we compute the mean forecast over all init states, and mean_forecast=False
for the new part.
Issue Analytics
- State:
- Created 5 years ago
- Comments:7
Top Results From Across the Web
Understanding Flexible Formulas - Oracle Help Center
Using a FLEX ID, a formula can calculate the current proposed budget based on last year's budget, the top-down plan, as well as...
Read more >Beam Analysis: Flexibility Method - YouTube
Analyzing a beam using the flexibility method. For my introductory structural analysis course at SDSU. San Diego public transit bus photo in ...
Read more >Make signature of compute_metrics parameter in Trainer class ...
For some models, I had to either pass some extra arguments to perform the metrics calculation or to access remote services to retrieve...
Read more >How to include a dynamic array INSIDE a struct in C?
Structs with flexible array members at the end can only be allocated dynamically in C. Your assumption about pointer aritmetics being faster ...
Read more >How to Calculate Unit Economics for Your Business - 2022
Method 2: Flexible LTV · GML (average gross margin per customer lifespan): The amount of profit generated by your business from a given...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I like this idea a lot; I think you should open a PR just to implement this when you have time.
So if I understand this correctly, we take each initialization year and run a metric. So, say, we choose
ensemble=1970
. I now have 40 members with 10 lead years each. Do we then construct a vector of the first lead year for all 40 members and compare to 1971 in the reference? Then do the same for each lead year?E.g. (example typed out here; not real):
Hopefully that makes some sense…
pearson_r gives 0 if applied over members only
for other metrics both works