季节性分解
1. 待完善:时间序列季节性分解
Section titled “1. 待完善:时间序列季节性分解”本笔记旨在记录将复杂时间序列拆解为基础组件(趋势 Trend、季节性 Seasonal 与残差 Residual)的算法。目前仅记录了经典分解 (Classical Decomposition) 与基于 Loess 的鲁棒分解 (STL) 的线索。后续需补充 Python statsmodels 中的相关调用代码与应用场景对比。
本笔记旨在记录将复杂时间序列拆解为基础组件(趋势 Trend、季节性 Seasonal 与残差 Residual)的算法。目前仅记录了经典分解 (Classical Decomposition) 与基于 Loess 的鲁棒分解 (STL) 的线索。后续需补充 Python statsmodels 中的相关调用代码与应用场景对比。