Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在训练集上运行 auto_arima(),然后使用相同的选定 p、d、q 值在测试集上评估 arima()。
如果你在谈论这个auto_arima(),显然
auto_arima()
返回一个拟合的 ARIMA 模型
即这个ARIMA类的一个实例。
ARIMA
然后您可以直接使用该类,或者如果您确实需要参数,请参阅get_params()方法。
get_params()