摘要: https://blog.csdn.net/orDream/article/details/100013682 上面这一篇是对 https://www.analyticsvidhya.com/blog/2016/02/time-series-forecasting-codes-python/的翻译, 阅读全文
posted @ 2020-02-01 16:57 星涅爱别离 阅读(2248) 评论(0) 推荐(0) 编辑
摘要: rolmean = pd.rolling_mean(timeseries, window=12) rolstd = pd.rolling_std(timeseries, window=12) expwighted_avg = pd.ewma(ts_log, halflife=12) 会有报错 Att 阅读全文
posted @ 2020-02-01 15:43 星涅爱别离 阅读(8510) 评论(0) 推荐(1) 编辑