Handle multiple time periods of 1 model setup #468
-
Dear modelskill team. I have one point observation and one model setup, run for two seperate periods in time, say a and b. I have scattered measurements, and don't want to run a long model during calibration phase. Here is what I tried:
I can of course do seperate comparers and plotting:
But I actually want to concat mr1a and mr1b somehow. This does not work:
I get ValueError: No data found in selection. I did not expect this to work, as I suppose the logic is reserved for having two different model setups rather than periods. Should I concat the model data as preprocessing step or is there a smarter way? I guess, this also relates to the "max_model_gap" discussion that we had back then. But I can't figure out how this is handled in the latest modelskill version. Thanks for help and hints! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Have you tried to "add" two comparers? If the model have the same name I think it should work as expected. cmp = cmp1 + cmp2 https://github.com/DHI/modelskill/blob/main/notebooks/Combine_comparers.ipynb |
Beta Was this translation helpful? Give feedback.
Have you tried to "add" two comparers?
If the model have the same name I think it should work as expected.
https://github.com/DHI/modelskill/blob/main/notebooks/Combine_comparers.ipynb