将堆叠的条形图旋转90度

时间:2018-08-05 19:03:57

标签: python pandas matplotlib bar-chart

我需要顺时针旋转堆积的条形图。但 orientation ='horizo​​ntal'参数破坏了图表。我如何轻松旋转它?

def city_question_distribution():

    #There is some code

    print(df.head())

    #Last column gives us total people. Therefore last column is not plotted    
    df.iloc[:, 0:-1].plot.bar(stacked=True)
    plt.title(result_question_title[0]['soru'])
    plt.show()

DF:

           kesinlikle  katılıyorum  kararsızım katılmıyorum  kesinlik  people
city_name  katılıyorum                                     katılmıyorum     
Adana         10.27      14.15      14.15        32.75        28.68    516.0
Adıyaman       4.04      17.17      16.16        23.23        39.39     99.0
Afyon         12.93      12.93       9.48        41.38        23.28    116.0
Ağrı           5.77      15.38      21.15        30.77        26.92     52.0
Amasya         3.87      10.97      14.19        35.48        35.48    155.0

enter image description here

0 个答案:

没有答案