我正在使用pmdarima.auto_arima估计Arima模型,我只能通过stepwise_fit.summary()检查控制台中的输出。
如何找到估计值或模型的残差。
有什么办法可以在变量窗口中读取t值,p值等统计值和残差序列的估计值?
将pmdarima导入为pm stepwise_fit = pm.auto_arima(log_unr,error_action ='ignore',supress_warnings = True,stepwise = True) stepwise_fit.summary()
我希望在变量窗口中得到一个类似元组的变量,其中包括输出。但是实际的输出在控制台中。