gpt4 book ai didi

python - 如何在 matplotlib python 中以垂直方式显示 xticks?

转载 作者:行者123 更新时间:2023-12-01 02:06:46 25 4
gpt4 key购买 nike

如何将类别名称作为 xlabel 而不将其全部挤在一起?下面是我的字典。实际上,由于排序,我的键和值混合在一起,但代码很好。

2 : theatre
16 : silent
234 : western
1230 : mystery
1296 : animated
1496 : fantasy
1584 : science
1922 : adventure
2176 : family
2767 : horror
4122 : action
4281 : romance
4804 : thriller
7105 : comedy
11147 : drama

keys, values = df_decades_obs_dict.values(), df_decades_obs_dict.keys()
plt.bar(range(len(values)), values, color='g')
plt.xticks(range(len(values)), keys)
plt.show()

这是图表的照片:

enter image description here

最佳答案

您可以使用plt.xticks(range(len(values)),keys,rotation=90)进行旋转。更多信息docs

关于python - 如何在 matplotlib python 中以垂直方式显示 xticks?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48981815/

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