Viewing a single comment thread. View all comments

Affectionate_Shine55 t1_jbvqc9r wrote

model_ar.fit().predict(test)

Usually people do

res=model_ar.fit()

res.summary()

preds = res.predict(test)

1