gpt4 book ai didi

python - 如何更改 Pandas 数据帧图上的 Y 轴

转载 作者:行者123 更新时间:2023-11-28 22:12:02 24 4
gpt4 key购买 nike

我有以下列表:

[('und', 52),
('die', 36),
('von', 33),
('der', 29),
('in', 20),
('das', 17),
('für', 17),
('eine', 15),
('des', 14),
('Die', 14),
('ODP', 14),
('wurde', 13),
('zu', 13)]

使用以下代码,我将其转换为 pandas 数据框:

df = pd.DataFrame(sorted_by_value, columns=['Wort', 'Vorkommen'])

然后我绘制它:

fig, ax_lst = plt.subplots(1,1)  # a figure with a 2x2 grid of Axes
df10 = df[:20]
df10.Vorkommen.plot(kind='barh')
plt.show()

如何将 y 轴从索引更改为单词?

enter image description here

最佳答案

默认情况下 plot.barh 使用索引。您可以像这样显式设置 x 和 y 值:

df.plot.barh(x='Wort', y='Vorkommen')

enter image description here

关于python - 如何更改 Pandas 数据帧图上的 Y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55259788/

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