Agent skill · Data & Analytics

seaborn

Statistical visualization with pandas integration. Use for quick exploration of distributions, relationships, and categorical comparisons with attractive defaults. Best for box plots, violin plots, pair plots, heatmaps. Built on matplotlib. For interactive plots use plotly; for publication styling use scientific-visualization.

K-Dense-AIgithub.com/K-Dense-AIGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add K-Dense-AI/scientific-agent-skills --skill seaborn --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 8
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.2
Allowed tools: ReadWriteEditBash
Requires: Requires Python 3.8+ and seaborn 0.13.2-compatible dependencies. Install with uv pip install seaborn==0.13.2; use…
Path: skills/seaborn/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 32,619
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Seaborn Statistical Visualization ## Overview Seaborn is a Python visualization library for creating publication-quality statistical graphics. Use this skill for dataset-oriented plotting, multivariate analysis, automatic statistical estimation, and complex multi-panel figures with minimal code. ## Environment and Installation Current upstream documentation is for seaborn 0.13.2. Official docs support Python 3.8+ with mandatory NumPy, pandas, and matplotlib dependencies; scipy, statsmodels, and fastcluster are optional for some advanced statistics and clustering workflows. ```bash # Reproducible install for examples in this skill uv pip install "seaborn==0.13.2" # Include optional statistical dependencies when needed uv pip install "seaborn[stats]==0.13.2" ``` Recommended imports: ```python import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import seaborn.objects as so ``` `sns.load_dataset()` downloads public example data when it is not cached. For private, regulated, or offline work, load local files explicitly with pandas and pass the resulting DataFrame to seaborn. ## Design Philosophy Seaborn follows these core principles: 1. **Datas

What's inside
Steps it walks through
  1. Overview
  2. Environment and Installation
  3. Design Philosophy
  4. Quick Start
  5. Core Plotting Interfaces
  6. Function Interface (Traditional)
  7. Objects Interface (Modern)
  8. Current API Notes
  9. Data Structure Requirements
  10. Long-Form Data (Preferred)
  11. Wide-Form Data
  12. Plotting Functions, Grids, Palettes, and Patterns
  13. Best Practices
  14. 1. Data Preparation
Ships with 7 files
  • references/examples.md
  • references/function_reference.md
  • references/grids_and_levels.md
  • references/objects_interface.md
  • references/palettes_and_theming.md
  • references/patterns_and_troubleshooting.md
  • references/plotting_functions.md
Commands it runs
Reproducible install for examples in this skill
uv pip install "seaborn==0.13.2"
Include optional statistical dependencies when needed
uv pip install "seaborn[stats]==0.13.2"
More from scientific-agent-skills
All skills →
About this skill
What does the seaborn skill do?

Statistical visualization with pandas integration. Use for quick exploration of distributions, relationships, and categorical comparisons with attractive defaults. Best for box plots, violin plots, pair plots, heatmaps. Built on matplotlib. For interactive plots use plotly; for publication styling use scientific-visualization.

How do I install it?

Run `npx skills add K-Dense-AI/scientific-agent-skills --skill seaborn --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From K-Dense-AI/scientific-agent-skills, a repository with 32,619 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going