File: scatterplot_matrix.py

package info (click to toggle)
seaborn 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,148 kB
  • sloc: python: 36,560; makefile: 183; javascript: 45; sh: 15
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
"""
Scatterplot Matrix
==================

_thumb: .3, .2
"""
import seaborn as sns
sns.set_theme(style="ticks")

df = sns.load_dataset("penguins")
sns.pairplot(df, hue="species")