标签: python pandas
我想和sarima一起进行销售预测,并尝试使用此代码
# fit model model = SARIMAX(df, order=(3, 1, 3), seasonal_order=(1, 1, 1, 1)) model_fit = model.fit(disp=False)
我收到此错误
ValueError: Pandas data cast to numpy dtype of object. Check input data with np.asarray(data).