File: scatterplot_matrix.py

package info (click to toggle)
seaborn 0.13.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,920 kB
  • sloc: python: 37,249; makefile: 182; javascript: 45; sh: 15
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (4)
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")