Plots of sensitivity analysis

Hi all,

I want to do some sensitivity analysis with my model by varying different parameters. Let’s say I want to plug in 3 different values for one parameter, which will give me 3 graphs with the different curves. Now I want only one graph which contains all the 3 curves. How can I do that?

Thanks a lot!

You can save the stored IRFs from oo_ and manually plot them. For example, use

set_param_value('rho',0.5); stoch_simul(order = 1,irf=40); oo_less_persistence=oo_;
to generate an IRF with rho set to 0.5 and saving the IRFs into oo_less_persistence from where you can plot them against oo_ from another run.

1 Like