简体   繁体   English

如何找到在 auto_arima() Python 中选择的 p、d、q 值?

[英]How to find the p,d,q values selected in auto_arima() Python?

我想在训练集上运行 auto_arima(),然后使用相同的选定 p、d、q 值在测试集上评估 arima()。

If you're talking about this auto_arima() , it apparently如果你在谈论这个auto_arima() ,它显然

returns a fitted ARIMA model返回一个拟合的 ARIMA 模型

ie an instance of this ARIMA class .这个ARIMA类的一个实例

You can then directly use that class, or if you really do need the parameters, see the get_params() method .然后您可以直接使用该类,或者如果您确实需要这些参数,请参阅get_params()方法

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM