gpt4 book ai didi

python - 使用数据帧生成直方图时切换轴

转载 作者:太空宇宙 更新时间:2023-11-03 14:39:35 25 4
gpt4 key购买 nike

index_size= 10
column_size = 1
df = pd.DataFrame(np.zeros((index_size, column_size)))
df.columns = ['Value']
df.iat[0,0] = 5
df.iat[1,0] = 6
df.iat[5,0] = 8
df.hist(column='Value')

我得到下面的图表,X 轴上有“值”,Y 轴上有索引 (0-9),但我想要 X 轴上有索引,Y 轴上有“值”。

enter image description here

我期待如下图:

enter image description here

最佳答案

使用参数orientation,不幸的是它不在DataFrame.plot.hist中文档,因为它包含最后一个 kwds 参数。

参数可以在 matplotlib.pyplot.hist 中找到.

df.hist(column='Value', orientation="horizontal")

graph

编辑:

直方图绘制计数值:

print (df['Value'].value_counts())
0.0 7
8.0 1
6.0 1
5.0 1
Name: Value, dtype: int64

如果需要剧情barbarh :

df.plot.bar()

graph

<小时/>
df.plot.barh()

graph

关于python - 使用数据帧生成直方图时切换轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46640132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com