modify:.gitignore

This commit is contained in:
Sheyiyuan 2025-03-24 15:50:18 +08:00
parent d99e1e4722
commit 4203fe6c93

View File

@ -1,13 +0,0 @@
### 3. SARIMA时间序列预测模型
#### 建模思路
1. **数据特性分析**
- 通过ADF检验验证序列平稳性p值=0.03通过5%显著性水平)
- 季节分解显示存在周周期性s=7和长期趋势
- ACF/PACF分析确定初始参数范围
2. **参数选择**
采用网格搜索确定最优参数组合:
```python
final_order = (1, 1, 1) # 非季节性参数
seasonal_order = (1, 1, 1, 7) # 周周期季节性