“Пара заговора Seaborn” Ответ

Seaborn Pairplot

>>> import seaborn as sns; sns.set(style="ticks", color_codes=True)
>>> iris = sns.load_dataset("iris")
>>> g = sns.pairplot(iris)
Silly Skylark

Пары с выбранным полем


pp = sns.pairplot(data=data,
                  x_vars=['age'],
                  y_vars=['weight', 'height', 'happiness'])
Depressed Dolphin

Seaborn Pairplot

import seaborn as sns
sns.set_theme(style="ticks")
df = sns.load_dataset("penguins")
sns.pairplot(df, hue="species")
Intempestive Al Dente

Пара заговора Seaborn

import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline

sns.pairplot(tips)

sns.pairplot(tips,hue='sex',palette='coolwarm') 
// hue gives legend color
nilotpalc

Ответы похожие на “Пара заговора Seaborn”

Смотреть популярные ответы по языку

Смотреть другие языки программирования