Files
iov_data_analysis_agent/config/templates/anomaly_detection.yaml

23 lines
877 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: 异常值检测分析
description: 识别数据中的异常值和离群点
steps:
- name: 数值列统计分析
description: 计算数值列的统计特征
prompt: 计算所有数值列的均值、标准差、四分位数等统计量
- name: 箱线图可视化
description: 使用箱线图识别异常值
prompt: 为每个数值列绘制箱线图,直观展示异常值分布
- name: Z-Score异常检测
description: 使用Z-Score方法检测异常值
prompt: 计算每个数值的Z-Score标记|Z|>3的异常值
- name: IQR异常检测
description: 使用四分位距方法检测异常值
prompt: 使用IQR方法(Q1-1.5*IQR, Q3+1.5*IQR)检测异常值
- name: 异常值汇总报告
description: 整理所有检测到的异常值
prompt: 汇总所有异常值,分析其特征和可能原因,提供处理建议