码迷,mamicode.com
首页 > 其他好文 > 详细

seaborn 与 iris 数据集

时间:2020-02-03 09:41:20      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:变量   箱线图   int   shu   swa   aaa   ntp   view   估计   

简易用法

sns.scatterplot(x='sepal_length', y='sepal_width', data=df, hue='species', style='species')
sns.lineplot(x=np.linspace(0, 1, 10), y=np.random.rand(10))
sns.relplot(x='sepal_length', y='sepal_width', data=df, hue='species', style='species', col='species')
sns.stripplot(x='species', y='sepal_width', data=df, hue='species', size=4)
sns.swarmplot(x='species', y='sepal_width', data=df, hue='species', size=4)
sns.boxplot(x='species', y='sepal_width', data=df, hue='species')
sns.violinplot(x='species', y='sepal_width', data=df, hue='species')
sns.barplot(x='species', y='sepal_width', data=df, hue='species')
sns.distplot(df.sepal_length, bins=50, rug=True)
sns.kdeplot(df.sepal_length, df.sepal_width, shade=True, cbar=True, cmap='Reds')
sns.jointplot(df.sepal_length, df.sepal_width, kind='kde')
sns.pairplot(df, hue="species")
sns.heatmap(np.random.randn(8, 8), annot=True, annot_kws={'size':9,'weight':'bold', 'color':'w'}, fmt='.2f')
sns.clustermap(df.iloc[:, :4])

Relational plots(关系图)

scatterplot(散点图)

技术图片

sns.scatterplot(x='sepal_length', y='sepal_width', data=df, hue='species', style='species')

lineplot(线图)

sns.lineplot(x=np.linspace(0, 1, 10), y=np.random.rand(10))

relplot(关系图)

技术图片

sns.relplot(x='sepal_length', y='sepal_width', data=df, hue='species', style='species', col='species')

Categorical plots(分类图)

Categorical scatterplots(分类散点图)

stripplot(分布散点图)

技术图片

sns.stripplot(x='species', y='sepal_width', data=df, hue='species', size=4)

swarmplot(分布密度散点图)

技术图片

sns.swarmplot(x='species', y='sepal_width', data=df, hue='species', size=4)

Categorical distribution plots(分类分布图)

boxplot(箱线图)

技术图片

sns.boxplot(x='species', y='sepal_width', data=df, hue='species')

violinplot(小提琴图)

技术图片

sns.violinplot(x='species', y='sepal_width', data=df, hue='species')

Categorical estimate plots(分类估计图)

barplot(条形图)

技术图片

sns.barplot(x='species', y='sepal_width', data=df, hue='species')

Distribution plots(分布图)

distplot(直方图)

技术图片

sns.distplot(df.sepal_length, bins=50, rug=True)

kdeplot(核密度图)

技术图片

sns.kdeplot(df.sepal_length, df.sepal_width, shade=True, cbar=True, cmap='Reds')

jointplot(联合分布图)

技术图片

sns.jointplot(df.sepal_length, df.sepal_width, kind='kde')

pairplot(变量关系组图)

技术图片

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

Matrix plots(矩阵图)

heatmap(热力图)

技术图片

data = np.random.randn(8, 8)
sns.heatmap(data, annot=True, annot_kws={'size':9,'weight':'bold', 'color':'w'}, fmt='.2f')

clustermap(聚类图)

技术图片

sns.clustermap(df.iloc[:, :4])

seaborn 与 iris 数据集

标签:变量   箱线图   int   shu   swa   aaa   ntp   view   估计   

原文地址:https://www.cnblogs.com/luyunan/p/12254445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!