标签:变量 箱线图 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])

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")

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

sns.clustermap(df.iloc[:, :4])标签:变量 箱线图 int shu swa aaa ntp view 估计
原文地址:https://www.cnblogs.com/luyunan/p/12254445.html