Agent Skills
› aiming-lab/MetaClaw
› visualization-selection
visualization-selection
GitHub指导在创建图表、绘图或仪表板时,根据数据关系选择最佳可视化类型。提供对比、分布、趋势等场景的图表推荐及设计原则,确保有效传达信息。
Trigger Scenarios
需要创建图表或绘图
设计数据仪表板
选择可视化类型
Install
npx skills add aiming-lab/MetaClaw --skill visualization-selection -g -y
SKILL.md
Frontmatter
{
"name": "visualization-selection",
"category": "data_analysis",
"description": "Use this skill when creating charts, plots, or dashboards. Choose the visualization type that best communicates the data relationship before writing any plotting code."
}
Visualization Selection Guide
| Goal | Chart Type |
|---|---|
| Compare categories | Bar chart (horizontal if many labels) |
| Show distribution | Histogram, box plot, violin plot |
| Show trend over time | Line chart |
| Show correlation | Scatter plot, heatmap |
| Show part-to-whole | Pie (<=5 slices), stacked bar |
Principles:
- Label axes and include units.
- Use color purposefully — not just for decoration.
- Avoid 3D charts; they distort perception.
- Start y-axis at 0 for bar charts (truncated bars mislead).
- Use a colorblind-safe palette (e.g.,
viridis,colorbrewer).
Version History
- 922caf3 Current 2026-07-25 11:09


