statsmodels.tsa.arima_process.ArmaProcess.acovf# ArmaProcess.acovf(nobs=None)[source]# Theoretical autocovariances of stationary ARMA processes Parameters: nobsintThe number of terms (lags plus zero lag) to include in returned acovf. dtypestr, optionalNumpy dtype to use for the output. If None (the default), the dtype is inferred from the common type of ar, ma, and sigma2. Returns: ndarrayThe autocovariance of ARMA process given by ar, ma. See also arma_acfAutocorrelation function for ARMA processes. acovfSample autocovariance estimation. References