What problem does it solve?
This Skill helps you quickly turn dataset columns into clear, publication-quality statistical visualizations without manually writing large amounts of plotting and styling code.
Core Features & Use Cases
- Dataset-oriented statistical graphics: Plots map DataFrame columns directly to aesthetics (x/y/hue/etc.) for intuitive exploratory analysis.
- Wide coverage of plot types: Supports relational plots (scatter/line), distribution plots (hist/kde/ecdf/pair/joint), categorical comparisons (box/violin/strip/swarm/bar/point), regression diagnostics, and matrix heatmaps.
- Publication-ready defaults: Includes consistent theming, palettes, and Matplotlib integration to produce figures suitable for papers and presentations.
- Multi-panel figure construction: Enables faceting and grid-based layouts via figure-level APIs like relplot/displot/catplot/jointplot/pairplot, plus dedicated grid objects (FacetGrid/PairGrid/JointGrid).
- Advanced styling workflow: Guides theming contexts (paper/notebook/talk/poster), axis-level vs figure-level function choice, and common figure export best practices.
Quick Start
Create a quick distribution comparison for a DataFrame df by calling seaborn to generate a violin plot of your target column grouped by a categorical column with an optional split by another category.