What problem does it solve? Turning raw tabular data into clear statistical graphics usually requires extensive matplotlib boilerplate. This Skill provides dataset-oriented plotting with automatic aggregation, confidence intervals, and publication-ready defaults so you can explore distributions, relationships, and categorical comparisons with minimal code. ## Core Features & Use Cases - Full plotting API coverage: Relational, distribution, categorical, regression, and matrix plots (scatterplot, histplot, violinplot, heatmap, clustermap) plus FacetGrid, PairGrid, and JointGrid for multi-panel figures. - Modern objects interface: Declarative seaborn.objects API for composing layered plots with marks, stats, moves, and scales. - Updated for seaborn 0.13.2: Covers current API patterns including errorbar replacing ci, native_scale for categorical axes, and deprecated parameter replacements. - Use Case: Given a CSV of experiment results, generate a faceted figure comparing treatment distributions with violin plots, overlay individual data points, add significance annotations, and export a 300 DPI PDF for publication. ## Quick Start Use the seaborn skill to plot the distribution of the 'response' column grouped by 'treatment' from my data.csv as a violin plot with individual points overlaid.