Chart Generator
Python-based chart generation skill with multiple libraries support.
Features
- ✅ matplotlib - Static charts (line, bar, pie, scatter)
- ✅ plotly - Interactive charts (HTML output)
- ✅ seaborn - Statistical charts (heatmap, boxplot)
Chart Types
- Line Chart - Trends, time series
- Bar Chart - Comparisons, rankings
- Pie Chart - Proportions, distributions
- Scatter Plot - Correlations, distributions
- Heatmap - Matrix data, correlations
- Boxplot - Statistical distributions
- Interactive Charts - Plotly-based HTML charts
Usage
Activate Environment
source /tmp/chart-venv/bin/activate
Generate Chart
import matplotlib.pyplot as plt
# Data
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# Create chart
plt.figure(figsize=(10, 6))
plt.plot(x, y, marker='o')
plt.title('My Chart')
plt.savefig('/tmp/chart.png', dpi=300)
Installation Location
- Virtual Environment:
/tmp/chart-venv/
- Usage Guide:
skills/chart-generator/USAGE.md
Examples
See USAGE.md for detailed examples:
- Line charts
- Bar charts
- Pie charts
- Scatter plots
- Heatmaps
- Boxplots
- Interactive charts
📄 许可证与版权声明
MIT License
Copyright (c) 2026 思捷娅科技 (SJYKJ)
免费使用、修改和重新分发时,需注明出处。
出处:
商业使用授权:
- 小微企业(<10 人):¥999/年
- 中型企业(10-50 人):¥4,999/年
- 大型企业(>50 人):¥19,999/年
- 企业定制版:¥99,999 一次性(源码买断)
1---2name: chart-generator3description: Generate charts and graphs using Python (matplotlib, plotly, seaborn). Supports line charts, bar charts, pie charts, scatter plots, heatmaps, boxplots, and interactive charts.4---56# Chart Generator78Python-based chart generation skill with multiple libraries support.910## Features1112- ✅ **matplotlib** - Static charts (line, bar, pie, scatter)13- ✅ **plotly** - Interactive charts (HTML output)14- ✅ **seaborn** - Statistical charts (heatmap, boxplot)1516## Chart Types17181. **Line Chart** - Trends, time series192. **Bar Chart** - Comparisons, rankings203. **Pie Chart** - Proportions, distributions214. **Scatter Plot** - Correlations, distributions225. **Heatmap** - Matrix data, correlations236. **Boxplot** - Statistical distributions247. **Interactive Charts** - Plotly-based HTML charts2526## Usage2728### Activate Environment2930```bash31source /tmp/chart-venv/bin/activate32```3334### Generate Chart3536```python37import matplotlib.pyplot as plt3839# Data40x = [1, 2, 3, 4, 5]41y = [2, 4, 6, 8, 10]4243# Create chart44plt.figure(figsize=(10, 6))45plt.plot(x, y, marker='o')46plt.title('My Chart')47plt.savefig('/tmp/chart.png', dpi=300)48```4950## Installation Location5152- **Virtual Environment**: `/tmp/chart-venv/`53- **Usage Guide**: `skills/chart-generator/USAGE.md`5455## Examples5657See `USAGE.md` for detailed examples:58- Line charts59- Bar charts60- Pie charts61- Scatter plots62- Heatmaps63- Boxplots64- Interactive charts6566---6768## 📄 许可证与版权声明6970MIT License7172Copyright (c) 2026 思捷娅科技 (SJYKJ)7374**免费使用、修改和重新分发时,需注明出处。**7576**出处**:77- GitHub: https://github.com/example-user/openclaw-skills78- ClawHub: https://clawhub.com79- 创建者:小米粒 (miliger)8081**商业使用授权**:82- 小微企业(<10 人):¥999/年83- 中型企业(10-50 人):¥4,999/年84- 大型企业(>50 人):¥19,999/年85- 企业定制版:¥99,999 一次性(源码买断)