熊猫DataFrame上的条形图

时间:2019-01-27 09:19:45

标签: python pandas bar-chart

我有这样的数据框:

     Continent        Surplus1980  Surplus1985     ...       Surplus2005  Surplus2010

       Africa         -711.186834  -894.362995     ...      -1001.189049  -960.203280
       Asia          -1464.995609 -1528.688190     ...      -1511.834129 -1529.459409
       Europe          716.832130   580.341819     ...        574.808741   590.688746
       North America  1586.628358  2559.054466     ...       2851.819722  2867.880633
       Oceania        4163.456825  3899.532718     ...       3807.652781  3796.396563
       South America  1455.955084  1196.506188     ...       1086.940969  1093.484142

现在,我想绘制一个条形图,在x轴上显示1980年至2010年每个大陆的值。我正在使用此功能:

df.plot(kind="bar", rot=0, ax=ax, width=0.5)  

我的结果显示给我:
bar-chart

那么,如何更改图例中的洲名,并且每年向我展示每个洲的价值?

1 个答案:

答案 0 :(得分:0)

使用:

df.set_index('Continent').T.plot(kind='bar', rot=0, width=0.5, figsize=(10,8))

输出:

enter image description here