Forward simulation uncertainty range #398
-
Hi there, Firstly - thanks very much for a very nice piece of software. Much appreciated. My query: I might be missing something dead obvious (sorry) , but is there a method for plotting simulation forecast uncertainties (based on the history match)? I can't see how to obtain this for periods beyond the observation record, other than using the emceehammer (ha! which I have done, but would like to keep things simpler if I can). Many thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi Chris, I'm not entirely sure if this is what you're looking for but you should be able to pass For example: ml # some model
ml.solve(tmax="2015")
pi = ml.fit.prediction_interval(tmin="2015", tmax="2022") Maybe that helps? Davíd |
Beta Was this translation helpful? Give feedback.
-
Maybe it'd be worth emphasizing in the documentation and/or uncertainty examle that tmin and tmax can be passed to |
Beta Was this translation helpful? Give feedback.
Hi Chris,
I'm not entirely sure if this is what you're looking for but you should be able to pass
tmin
andtmax
to the calculation of the prediction interval. This is the uncertainty as a result of estimated parameter uncertainties and the standard deviation of the residuals (for the calibration period).For example:
Maybe that helps?
Davíd