时间序列预测 | Python实现Prophet、ARIMA、LSTM时间序列数据预测

时间序列预测 | Python实现Prophet、ARIMA、LSTM时间序列数据预测

目录

    • 时间序列预测 | Python实现Prophet、ARIMA、LSTM时间序列数据预测
      • 数据描述
      • 特征工程
      • 构建模型
      • 程序设计
      • 致谢

数据描述

首先读取数据,并找到对应的日期列

from datetime import datetime, date 
df['date'] = pd.to_datetime(df<

你可能感兴趣的:(时间序列分析(Python),机器学习算法,深度学习算法,python,时序模型,机器学习)