python - 如何使用 factorplot 用分类值注释条形图或绘制 4 个变量?

标签 python python-3.x pandas data-visualization seaborn

我有一个要绘制的数据框。我想到了 2 个选项(检查图像)。

对于选项 1,我需要注释一个分类值(“Elec”)。

对于选项 2,我仍然需要使用“factorplot”,但我不知道如何修复我得到的错误。

#CODE FOR THE DATAFRAME
raw_data = {'Max_Acc': [90.71, 87.98, 92.62, 78.93, 73.69, 73.66, 72.29,
                        92.62, 94.17, 92.62, 83.81, 79.76, 74.40, 72.38],
            'Stage': ['AWA', 'Rem', 'S1', 'S2', 'SWS', 'SX', 'ALL',
                      'AWA', 'Rem', 'S1', 'S2', 'SWS', 'SX', 'ALL'],
             'Elec': ['Fp1', 'Fp2', 'C4', 'Cz', 'Pz', 'P4', 'T3',
                      'C4', 'T3', 'Fp1', 'P4', 'Fp2', 'Fz', 'Fz'],
            'Clf': ['RF', 'RF', 'RF', 'RF', 'RF', 'RF', 'RF',
                    'XG', 'XG', 'XG', 'XG', 'XG', 'XG', 'XG']}

df_m=pd.DataFrame(raw_data, columns = ['Max_Acc', 'Stage', 'Elec', 'Clf'])

df_m


#CODE FOR THE PLOT (OPTION 1)
sns.set(style="white") 
g = sns.factorplot(x="Stage", y="Elec", hue='Clf', data=df, size=2, aspect=3, kind="bar",
               legend=False) 


ax=g.ax 
def annotateBars(row, ax=ax): 
    for p in ax.patches:
        ax.annotate("%.2f" % p.get_height(), (p.get_x() + p.get_width() / 2., p.get_height()),
         ha='center', va='center', fontsize=11, color='gray', rotation=90, xytext=(0, 20),
         textcoords='offset points')  


plot = df_m.apply(annotateBars, ax=ax, axis=1)



#CODE FOR THE PLOT (OPTION 2)
g = sns.factorplot(x="Clf", y="Max_Acc", hue='Elec', col='Stage', data=df, size=2, aspect=3, kind="bar",
               legend=False)

选项 1(用分类值注释)

Option 1

选项 2(绘制 4 个变量) Option 2

enter image description here

最佳答案

我没有使用“factorplot”。 我刚刚插入了第二个 x 轴。

enter image description here

#To use seaborn palette
palette = sns.color_palette("Set1", 8)
sns.set(style="white")

uelec, uind = np.unique(df["Elec"], return_inverse=1)
cmap = plt.cm.get_cmap("Set1")

colors= [ palette[i] for i in uind]
fig, ax=plt.subplots(figsize=(15, 5)) 
l = len(df)
pos = np.arange(0,l) % (l//2) + (np.arange(0,l)//(l//2)-1)*0.4

ax.bar(pos, df["Max_Acc"], width=0.4, align="edge", ec="k", color=colors)

handles=[plt.Rectangle((0,0),1,1, color=palette[i], ec="k") for i in range(len(uelec))]

legend=ax.legend(bbox_to_anchor=(0., 1.15, 1., .102), handles=handles, labels=list(uelec),
       prop ={'size':10}, loc=9, ncol=8, title=r'Best algorithm using Max_Acc after undersampling' )

legend.get_frame().set_linewidth(0.0) 
plt.setp(legend.get_title(),fontsize='24')

ax.set_xticks(range(l//2))
ax.set_xticklabels(df["Stage"][:l//2])
ax.set_ylim(0, 110)
ax.get_yaxis().set_visible(False)
ax.spines['top'].set_visible(False) 

#Double x-axis
ax.set_xticks(pos+0.2, minor=True)
clf=df['Clf'].tolist()   
ax.set_xticklabels(clf, minor=True)
plt.setp(ax.get_xticklabels(), rotation=0)
ax.tick_params(axis='x', which='major', pad=25, size=0)

ax=ax 
def annotateBars(row, ax=ax): 
    for p in ax.patches:
        ax.annotate("%.2f" % p.get_height(), (p.get_x() + p.get_width() / 2., p.get_height()),
                 ha='center', va='center', fontsize=11, color='gray', rotation=90, xytext=(0, 20),
                 textcoords='offset points')  

plot = df.apply(annotateBars, ax=ax, axis=1)

关于python - 如何使用 factorplot 用分类值注释条形图或绘制 4 个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46759858/

相关文章:

python - 如何在 Windows 机器上的 Python 3.4 中安装 lxml

Pandas 5 年和 10 年移动平均线

python - 使用 Python 的 Pandas 按 bin 查找平均值

python - Pandas 条件下左移

python - pygame 在退出()时仍然使用 .ttf 文件

python - 将 Pip 包传输到 conda

c++ - 使用共享内存在 C++ 和 Python 之间进行快速通信

python - Plotly - 如何突出显示同一图中两个图形的两个结果

使用 IF 语句的 Python 用户定义函数不起作用

用于散热的 Python numpy 矢量化