statsmodels.tsa.stattools.LevinsonDurbinResult#
- class statsmodels.tsa.stattools.LevinsonDurbinResult(sigma_v, arcoefs, pacf, sigma, phi)[source]#
Result of
levinson_durbin.- Parameters:
- sigma_v
float The estimate of the error variance.
- arcoefs
ndarray The estimate of the autoregressive coefficients for a model including nlags.
- pacf
ndarray The partial autocorrelation function.
- sigma
ndarray The entire sigma array from intermediate result, last value is sigma_v.
- phi
ndarray The entire phi array from intermediate result, last column contains autoregressive coefficients for AR(nlags).
- sigma_v
Methods
count(value, /)Return number of occurrences of value.
index(value[, start, stop])Return first index of value.
Methods
count(value, /)Return number of occurrences of value.
index(value[, start, stop])Return first index of value.
Properties