【发布时间】:2022-11-27 12:01:54
【问题描述】:
标签: python logistic-regression
标签: python logistic-regression
根据this site - 有很多时间序列预测可供选择的方法...
- Autoregression (AR)
- Moving Average (MA)
- Autoregressive Moving Average (ARMA)
- Autoregressive Integrated Moving Average (ARIMA)
- Seasonal Autoregressive Integrated Moving-Average (SARIMA)
- Seasonal Autoregressive Integrated Moving-Average with Exogenous Regressors (SARIMAX)
- Vector Autoregression (VAR)
- Vector Autoregression Moving-Average (VARMA)
- Vector Autoregression Moving-Average with Exogenous Regressors (VARMAX)
- Simple Exponential Smoothing (SES)
- Holt Winter’s Exponential Smoothing (HWES)
根据this site,许多不同的绘制方式:
Matplotlib: Plots graphs easily on all applications using its API.
Seaborn: Versatile library based on matplotlib that allows comparison between multiple variables.
ggplot: Produces domain-specific visualizations
Bokeh: Preferred libraries for real-time streaming and data.
Plotly: Allows very interactive graphs with the help of JS.
现在我预计您不会想要上述方法的每一种可能的排列或组合,因此我建议您对其中的一些方法进行一些研究,然后确定最适合您的需求和目标的方法。
【讨论】: