What problem does it solve? Creating publication-quality statistical graphics in Python often requires extensive matplotlib boilerplate for aggregation, confidence intervals, faceting, and styling. This Skill provides structured guidance for using seaborn to produce exploratory and publication-ready visualizations with minimal code. ## Core Features & Use Cases - Full Plot Taxonomy: Covers relational, distribution, categorical, regression, and matrix plots, plus FacetGrid, PairGrid, and JointGrid for multi-panel figures. - Dual Interfaces: Documents both the traditional function interface and the modern declarative seaborn.objects API for layered, composable plots. - Statistical Awareness: Built-in aggregation, confidence intervals, KDE bandwidth control, and regression fitting with residual diagnostics. - Use Case: Given a DataFrame of experimental results, generate a faceted violin plot comparing treatment groups, a correlation heatmap, and a pairplot for exploratory analysis, then export publication-ready PDFs at 300 DPI. ## Quick Start Use the seaborn skill to create a correlation heatmap and a faceted scatter plot from my dataset and save them as high-resolution figures.