如何从pmdarima.auto_arima()获得统计值(例如p值)和输出(例如残差序列)?

时间:2019-04-28 20:41:47

标签: python-3.x

我正在使用pmdarima.auto_arima估计Arima模型,我只能通过stepwise_fit.summary()检查控制台中的输出。

  1. 如何找到估计值或模型的残差。

  2. 有什么办法可以在变量窗口中读取t值,p值等统计值和残差序列的估计值?

将pmdarima导入为pm stepwise_fit = pm.auto_arima(log_unr,error_action ='ignore',supress_warnings = True,stepwise = True) stepwise_fit.summary()

我希望在变量窗口中得到一个类似元组的变量,其中包括输出。但是实际的输出在控制台中。

0 个答案:

没有答案