Agent skill
python-dataviz
This skill should be used when the user asks to "create a plot", "make a chart", "visualize data", "create a heatmap", "make a scatter plot", "plot time series", "create publication figures", "customize plot styling", "use matplotlib", "use seaborn", or needs guidance on Python data visualization, statistical graphics, or figure export.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/python-dataviz
SKILL.md
Python Data Visualization
Python data visualization with matplotlib and seaborn for creating publication-quality figures, statistical graphics, and exploratory visualizations.
When to use each library
Matplotlib is the foundational plotting library. Use it for:
- Fine-grained control over every plot element
- Custom layouts with GridSpec or subplot_mosaic
- 3D visualizations
- Animations
- Embedding plots in GUI applications
- When you need low-level customization
Seaborn builds on matplotlib for statistical visualization. Use it for:
- Statistical plots with automatic aggregation and confidence intervals
- Dataset-oriented plotting from DataFrames
- Faceted multi-panel figures (small multiples)
- Distribution visualization (KDE, histograms, violin plots)
- Correlation matrices and clustered heatmaps
- Publication-ready aesthetics with minimal code
Combined approach: Use seaborn for the main visualization, then customize with matplotlib.
Core concepts
Matplotlib hierarchy
- Figure - Top-level container for all plot elements
- Axes - Actual plotting area (one Figure can have multiple Axes)
- Artist - Everything visible (lines, text, ticks, patches)
- Axis - The x/y number lines with ticks and labels
Two matplotlib interfaces
Object-oriented interface (recommended):
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(10, 6))
ax.plot(x, y, linewidth=2, label='data')
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.legend()
plt.savefig('figure.png', dpi=300, bbox_inches='tight')
pyplot interface (quick exploration only):
plt.plot(x, y)
plt.xlabel('X Label')
plt.show()
Always use the object-oriented interface for production code.
Seaborn function levels
Axes-level functions plot to a single matplotlib Axes:
- Accept
ax=parameter for placement - Return Axes object
- Examples:
scatterplot,histplot,boxplot,heatmap
Figure-level functions manage entire figures with faceting:
- Use
col,rowparameters for small multiples - Return FacetGrid, JointGrid, or PairGrid objects
- Cannot be placed in existing figures
- Examples:
relplot,displot,catplot,lmplot,jointplot,pairplot
import seaborn as sns
# Axes-level: integrates with matplotlib
fig, axes = plt.subplots(1, 2)
sns.scatterplot(data=df, x='x', y='y', ax=axes[0])
sns.histplot(data=df, x='x', ax=axes[1])
# Figure-level: automatic faceting
sns.relplot(data=df, x='x', y='y', col='category', hue='group')
Seaborn semantic mappings
Map data variables to visual properties automatically:
hue- Color encodingsize- Point/line sizestyle- Marker/line stylecol,row- Facet into subplots
sns.scatterplot(data=df, x='x', y='y',
hue='category', # Color by category
size='importance', # Size by value
style='type') # Different markers
Quick start workflow
1. Import libraries
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
import numpy as np
2. Set theme (optional)
sns.set_theme(style='whitegrid', context='paper', font_scale=1.1)
3. Create the plot
# Simple seaborn plot
fig, ax = plt.subplots(figsize=(10, 6))
sns.scatterplot(data=df, x='total_bill', y='tip', hue='day', ax=ax)
# Or figure-level with faceting
g = sns.relplot(data=df, x='x', y='y', col='category', kind='scatter')
4. Customize with matplotlib
ax.set_xlabel('Total Bill ($)', fontsize=12)
ax.set_ylabel('Tip ($)', fontsize=12)
ax.set_title('Restaurant Tips', fontsize=14)
ax.legend(title='Day', bbox_to_anchor=(1.05, 1))
5. Save the figure
plt.savefig('figure.png', dpi=300, bbox_inches='tight')
plt.savefig('figure.pdf') # Vector format for publications
Plot type selection
| Data Type | Recommended | Alternatives |
|---|---|---|
| Distribution (1 variable) | histplot, kdeplot |
boxplot, violinplot |
| Relationship (2 continuous) | scatterplot |
regplot, hexbin |
| Time series | lineplot |
plot with dates |
| Categorical comparison | barplot, boxplot |
violinplot, stripplot |
| Correlation matrix | heatmap |
clustermap |
| Pairwise relationships | pairplot |
PairGrid |
| Bivariate with marginals | jointplot |
JointGrid |
For detailed plot type examples, see references/plot-types.md.
Best practices
Interface and layout
- Use object-oriented interface - Explicit control, easier debugging
- Use
constrained_layout=True- Prevents overlapping elements - Set figsize at creation -
fig, ax = plt.subplots(figsize=(10, 6)) - Close figures explicitly -
plt.close(fig)to prevent memory leaks
Data preparation
- Use tidy/long-form data - Each variable a column, each observation a row
- Use meaningful column names - Seaborn uses them as axis labels
- Pass DataFrames - Not raw arrays, to preserve semantic information
Color and accessibility
- Use perceptually uniform colormaps -
viridis,plasma,cividis - Avoid rainbow colormaps -
jetis not perceptually uniform - Consider colorblind users - Use
viridis,cividis, or colorblind palette - Use diverging colormaps for centered data -
coolwarm,RdBufor data with meaningful zero
Export
- Use 300 DPI for publications -
dpi=300 - Use vector formats for print - PDF, SVG
- Use
bbox_inches='tight'- Removes excess whitespace - Set explicit figure size - Control dimensions in inches
Statistical plots
- Understand automatic aggregation - Seaborn computes means and CIs by default
- Specify error representation -
errorbar='sd',errorbar=('ci', 95) - Show individual data points - Combine
stripplotwithboxplot
Common patterns
Multi-panel figure
fig, axes = plt.subplots(2, 2, figsize=(12, 10), constrained_layout=True)
sns.scatterplot(data=df, x='x', y='y', ax=axes[0, 0])
sns.histplot(data=df, x='x', ax=axes[0, 1])
sns.boxplot(data=df, x='cat', y='y', ax=axes[1, 0])
sns.heatmap(corr_matrix, ax=axes[1, 1], cmap='coolwarm', center=0)
Publication figure
sns.set_theme(style='ticks', context='paper', font_scale=1.1)
fig, ax = plt.subplots(figsize=(8, 6))
sns.boxplot(data=df, x='treatment', y='response', ax=ax)
sns.stripplot(data=df, x='treatment', y='response', color='black', alpha=0.3, ax=ax)
ax.set_xlabel('Treatment Condition')
ax.set_ylabel('Response (units)')
sns.despine()
plt.savefig('figure.pdf', dpi=300, bbox_inches='tight')
Faceted exploration
g = sns.relplot(
data=df, x='x', y='y',
hue='treatment', style='batch',
col='timepoint', col_wrap=3,
kind='line', height=3, aspect=1.5
)
g.set_axis_labels('X Variable', 'Y Variable')
g.set_titles('{col_name}')
Scripts
This skill includes helper scripts:
scripts/plot_template.py- Template demonstrating various plot typesscripts/style_configurator.py- Interactive style configuration utility
References
For detailed information, load specific references:
oaps skill context python-dataviz --references <name>
| Reference | Content |
|---|---|
matplotlib-fundamentals |
Core matplotlib concepts, hierarchy, common operations |
seaborn-fundamentals |
Seaborn design, data structures, function categories |
plot-types |
Comprehensive plot type guide with examples |
styling |
Colormaps, palettes, themes, typography |
api-reference |
Quick reference for common functions and parameters |
troubleshooting |
Common issues and solutions |
seaborn-objects |
Modern seaborn.objects declarative interface |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?