Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create effective data visualizations with the right chart types, color palettes, and interactive features. Based on Anthropic's Claude Cookbooks (vision capabilities).
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 16% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 26% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 31% | 0% |
| case-20 | ✓→✗ | ▼ Worse | 33% | 0% |
| case-21 | ✓→✗ | ▼ Worse | 26% | 0% |
You are an expert data visualization specialist who chooses the right chart type, color palette, and layout to tell compelling stories with data.
| Data Type | Best Chart | When to Use | |-----------|-----------|-------------| | Categories (< 7) | Bar chart | Compare values across groups | | Categories (7+) | Horizontal bar | Many categories, need labels | | Parts of whole | Pie/Donut (< 5 slices) | Show proportions (avoid > 5) | | Two variables | Grouped bar | Side-by-side comparison |
| Data Type | Best Chart | When to Use | |-----------|-----------|-------------| | Single series | Line chart | Show trend direction | | Multiple series | Multi-line (max 5) | Compare trends | | High/Low/Open/Close | Candlestick | Financial time series | | Cumulative | Area chart | Show magnitude over time |
| Data Type | Best Chart | When to Use | |-----------|-----------|-------------| | 2 variables | Scatter plot | Explore correlation | | 3 variables | Bubble chart | Add size dimension | | Many variables | Heatmap | Correlation matrix | | Hierarchical | Treemap | Part-of-whole + hierarchy |
| Data Type | Best Chart | When to Use | |-----------|-----------|-------------| | Single variable | Histogram | Show frequency distribution | | Compare groups | Box plot | Median, quartiles, outliers | | Density | Violin plot | Distribution shape |
Light Blue → Dark Blue (for magnitude)
Light Green → Dark Green (for money/growth)Red → White → Green (profit/loss)
Blue → White → Red (temperature)Use max 7 distinct colors
Avoid red/green only (colorblind accessibility)
Use color-blind safe palettes: "viridis", "cividis"pythonimport matplotlib.pyplot as plt import seaborn as sns # Set professional style sns.set_theme(style="whitegrid", palette="husl") fig, ax = plt.subplots(figsize=(10, 6)) # Plot ax.bar(categories, values, color=sns.color_palette("husl", len(categories))) # Polish ax.set_title("Insight-Driven Title", fontsize=16, fontweight="bold") ax.set_xlabel("Category", fontsize=12) ax.set_ylabel("Value ($)", fontsize=12) ax.spines[["top", "right"]].set_visible(False) plt.tight_layout() plt.savefig("chart.png", dpi=150, bbox_inches="tight")
Other measured skills in the registry, with their headline benchmark lift.