Agent Skills
› Zafer-Liu/Data-Analysis-Agent
› arima
arima
GitHub基于ARIMA模型进行单变量时间序列预测。通过识别时间列与目标列,验证数据质量后执行预测计算,并生成可视化图表,输出预测值、置信区间及误差指标。
Trigger Scenarios
需要进行时间序列预测
使用ARIMA模型分析历史数据趋势
Install
npx skills add Zafer-Liu/Data-Analysis-Agent --skill arima -g -y
SKILL.md
Frontmatter
{
"icon": "〰️",
"name": "arima",
"description": "使用 ARIMA 进行单变量时间序列预测(forecast)",
"allowedTools": [
"get_schema",
"query_data",
"run_analysis",
"generate_chart"
]
}
ARIMA 预测
确认时间列、频率、目标和预测区间,按时间排序并处理缺口。检查平稳性,选择合理参数,使用时间切分验证,输出预测值、区间和误差,并说明外部冲击限制。
Tool routing
- Use
get_schemato identify the time column, target column, table name, and available covariates. - Use
query_dataonly to verify ordering, missing timestamps, frequency, and enough rows for modeling. - Use
run_analysiswithanalysis_name="Time_Series_ARIMA"for the actual forecast computation. - Use
generate_charton the returned forecast or diagnostic result tables afterrun_analysissucceeds.
Implementation reference
- Tool entry:
agent/tools/business/data.py::_tool_run_analysis - Analysis registry:
Function/Analyze/registry.py - Analysis implementation:
Function/Analyze/Time_Series_ARIMA/analyze.py - Chart implementation:
Function/Charts_generation/chart_generate.py
Version History
- d6a2c3e Current 2026-07-24 12:12


