from statsmodels.tsa.arima.model import ARIMA arma = ARIMA(serie_temporelle, order=(1,0,3)).fit() arma.summary()