Open nebiyebulan opened 1 year ago
Hi @nebiyebulan , Thank you for exploring with Kats. We have a tutorial for forecasting with Kats that could be very useful. I encourage you to take a look. https://github.com/facebookresearch/Kats/blob/main/tutorials/kats_201_forecasting.ipynb
Hi, I'm running kats' arima model with the following code. But I am getting this error.
`df = pd.read_csv('uni_session_neww.csv', sep=';') df.columns = ['time', 'value']
print(df.head())
ts=TimeSeriesData(df)
ts.plot(cols=['value'])
plt.show()
logging.basicConfig(level=logging.DEBUG) params = ARIMAParams(p=1, d=1, q=1)
m = ARIMAModel(data=ts, params=params) m.fit()
fcst = m.predict(steps=15, include_history =True) print(fcst.head())
m.plot() plt.title('ARIMA') plt.show()`