是否存在 python 模型可以对时间序列数据进行全自动 Arima?
Does a python model exist that will do full auto-arima for time series data?
是否存在 python 模型可以对时间序列数据进行全自动 Arima?最好有 slkearn 风格的界面。
简单地谷歌搜索 "python auto arima" 导致 https://pypi.org/project/pmdarima/ 引用,其中有一个
user-friendly estimator interface for programmers familiar with scikit-learn.
看起来它正适合您。有关详细信息,请参阅 the documentation。
sktime aims to be "A unified framework for machine learning with time series." It's AutoARIMA class 包装 pmdarima 的 class 包装 statsmodels 的 class.
sktime 在拟合、预测等方面模仿 scikit-learn 界面
是否存在 python 模型可以对时间序列数据进行全自动 Arima?最好有 slkearn 风格的界面。
简单地谷歌搜索 "python auto arima" 导致 https://pypi.org/project/pmdarima/ 引用,其中有一个
user-friendly estimator interface for programmers familiar with scikit-learn.
看起来它正适合您。有关详细信息,请参阅 the documentation。
sktime aims to be "A unified framework for machine learning with time series." It's AutoARIMA class 包装 pmdarima 的 class 包装 statsmodels 的 class.
sktime 在拟合、预测等方面模仿 scikit-learn 界面