使用pandas.DataFrame.plot(kind =' hist')时,如何交换x轴和y轴?

时间:2018-03-30 13:57:00

标签: python pandas matplotlib histogram

我有我的数据框Data Source=root_ip_adress;Initial Catalog=db_name;User Id=computername\\Administrator;Password=mypassword; ,我想在我的数据框中使用列df_power的值计数制作直方图。我有以下代码:

Age

给出以下直方图:
enter image description here

但如果我使用默认的折线图:

ages = df_power.Age.value_counts().sort_index()
age_plot = ages.plot(kind = 'hist', legend = True)
age_plot.set_xlabel("Age (Years)")
age_plot.set_ylabel("Count")  

我得到的图形看起来像这样(这是我正在寻找的正确的轴方向,但我希望它以直方图的形式):
enter image description here

我无法找到交换轴的方法,并希望得到任何帮助或解决方案。

0 个答案:

没有答案