seaborn.boxplot用于数据集

时间:2018-05-27 13:56:54

标签: python seaborn boxplot

我正在使用Wisconsin dataset。要显示一个箱形图,其中Y轴是数据框的变量(例如:radius_mean),X轴是诊断,我执行以下操作:

sns.boxplot(x='label', y='radius', data=dsWisconsin)

(dsWisconsin是从.csv加载pandas的数据框)

我的问题是,如何显示每个变量的前一段代码,如何显示每个变量的所有箱图(在网格中)?

例如,像这样的东西,但是威斯康星州每个变量的箱形图:

Multiple histogram

提前致谢

2 个答案:

答案 0 :(得分:1)

正如您所看到的,尽管可以将所有变量拟合到一个图中,但这不是一个非常有用的可视化。因此,我建议你按照第二个例子,你得到5个数字,每个数字包含7个子图。

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

df = pd.read_csv('C:\wisconsin.csv', index_col=0)

n_rows = 5
n_cols = 6
count = 0
col_num = 1

plt.subplots(n_rows, n_cols)
for i in range(n_rows):
    for j in range(n_cols):
        plt.subplot(n_rows, n_cols, count+1)
        sns.boxplot(df.iloc[:, col_num], orient='vertical')
        if col_num < df.shape[1] :
            count += 1
            col_num += 1

plt.show()

enter image description here

df_1 = df.iloc[:, 1:-1]

n_rows = 5
col_start = 0
delta = 7
col_end = 0


for i in range(n_rows):
    col_end = col_start + delta
    df.iloc[:, col_start:col_end].plot(kind = 'box', subplots=True, sym='b.')
    col_start += delta

plt.show()

enter image description here

答案 1 :(得分:1)

您可以将数据转换为整洁的格式并使用FacetGrid

df = df.melt(id_vars=['id', 'diagnosis'])
df[:3]
#          id diagnosis     variable  value
# 0    842302         M  radius_mean  17.99
# 1    842517         M  radius_mean  20.57
# 2  84300903         M  radius_mean  19.69

cols = ['radius_mean', 'texture_mean', 'perimeter_mean', 'area_mean']
grid = sns.axisgrid.FacetGrid(df[df.variable.isin(cols)], col='variable', sharey=False)
grid.map(sns.boxplot, 'diagnosis','value')

enter image description here