statsmodels.tsa.vector_ar.svar_model.SVARResults.irf_resim#
- SVARResults.irf_resim(orth=False, repl=1000, steps=10, rng=None, burn=100, cum=False)#
Simulates impulse response function, returning an array of simulations. Used for Sims-Zha error band calculation.
- Parameters:
- orthbool,
defaultFalse Compute orthogonalized impulse response error bands
- repl
int number of Monte Carlo replications to perform
- steps
int,default10 number of impulse response periods
- signif
float(0 <signif<1) Significance level for error bars, defaults to 95% CI
- rng{
None,int, array_like[int],numpy.random.Generator,numpy.random.RandomState},optional np.random seed for replications
- seed{
None,int, array_like[int],numpy.random.Generator,numpy.random.RandomState},optional Deprecated since version 0.15: seed has been deprecated. In-line with SPEC-007, use rng for passing a random number generator or seed.
- burn
int number of initial observations to discard for simulation
- cumbool,
defaultFalse produce cumulative irf error bands
- orthbool,
- Returns:
Arrayofsimulatedimpulseresponsefunctions
Notes