statsmodels.tsa.vector_ar.local_proj.LocalProjectionsResults#
- class statsmodels.tsa.vector_ar.local_proj.LocalProjectionsResults(model, irfs, stderr)[source]#
Results from a fitted
LocalProjectionsmodel.- Attributes:
- irfs
ndarray,shape(H+1,n_endog,n_shock) Estimated impulse responses.
irfs[h, i, j]is the response of variableito shockjat horizonh.- stderr
ndarray,shape(H+1,n_endog,n_shock) Newey-West standard errors for each IRF coefficient.
- model
LocalProjections The model instance.
- nobs
int Number of observations used (after trimming for lags and max horizon).
- irfs
Methods
conf_int([alpha])Pointwise confidence intervals for all impulse responses.
Cumulative sum of IRFs across horizons.
plot_irfs([impulse, response, alpha, ...])Plot impulse response functions with confidence bands.
Methods
conf_int([alpha])Pointwise confidence intervals for all impulse responses.
Cumulative sum of IRFs across horizons.
plot_irfs([impulse, response, alpha, ...])Plot impulse response functions with confidence bands.
Properties