ARIMA model returning a KeyError

12 Views Asked by At

After fitting the train dataset, I'm trying to predict with the fitted ARIMA model but I'm getting this error message ==> The start argument could not be matched to a location related to the index of the data.'

pred = model_fit.predict(start=test_oilPrice.index.min(), end=test_oilPrice.index.max())[[enter image description here](https://i.stack.imgur.com/rwvM6.png)](https://i.stack.imgur.com/MsdK9.png)

0

There are 0 best solutions below