使用列值作为计数生成Seaborn Countplot

时间:2017-01-26 08:13:48

标签: pandas seaborn

对于下表

                             count_value
CPUCore Offline_RetentionAge       
i7      183                    4184
        7                      1981
        30                      471
i5      183                    2327
        7                       831
        30                      250
Pentium 183                     333
        7                       125
        30                       43
2       183                     575
        7                       236
        31                       96

是否可以生成如下所示的seaborn countplot(或正常计数图)(使用sns.countplot(x='CPUCore', hue="Offline_BackupSchemaIncrementType", data=dfCombined_df)生成)

enter image description here

问题在于我需要使用count_value作为计数,而不是真正计算Offline_RetentionAge

1 个答案:

答案 0 :(得分:2)

我认为你需要seaborn.barplot

sns.barplot(x="count_value", y="index", hue='Offline_RetentionAge', data=df.reset_index())

graph