简体   繁体   中英

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

returns a fitted ARIMA model

ie an instance of this ARIMA class .

You can then directly use that class, or if you really do need the parameters, see the get_params() method .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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