python中ARIMA的引用

2024-06-07 19:35:31 发布

您现在位置:Python中文网/ 问答频道 /正文

我用Python中的statsmodels.tsa.arima_model import ARIMA开发了一个ARIMA模型。最近我正在写ARIMA的方法论,但是我在页面上找不到任何参考。你知道吗

所以我的问题是在哪里可以找到Python中使用的引用(或公式)?你知道吗

先谢谢你。你知道吗


Tags: 模型importmodel页面公式statsmodels方法论tsa
1条回答
网友
1楼 · 发布于 2024-06-07 19:35:31

您可以查看以下文档:

https://www.statsmodels.org/dev/generated/statsmodels.tsa.arima_model.ARIMA.html

它显示了使用的公式:

If exogenous variables are given, then the model that is fit is

              ϕ(L)(y(t)−X(t)β)=θ(L)ϵ(t) 

where ϕ and θ are polynomials in the lag operator, L. This is the regression model with ARMA errors, or ARMAX model. This specification is used, whether or not the model is fit using conditional sum of square or maximum-likelihood, using the method argument in statsmodels.tsa.arima_model.ARIMA.fit. Therefore, for now, css and mle refer to estimation methods only. This may change for the case of the css model in future versions.

如果你点击“源代码”,你可以看到源代码。你知道吗

相关问题 更多 >

    热门问题