gpt4 book ai didi

python - xlabel 和 ylabel 在 Pandas 图中不可见

转载 作者:太空宇宙 更新时间:2023-11-04 10:35:31 24 4
gpt4 key购买 nike

如何使 xlabel 和 ylabel 在下图中可见?

import pandas as pd
import matplotlib.pyplot as plt
a = {'Test1': {1: 21867186, 4: 20145576, 10: 18018537},
'Test2': {1: 23256313, 4: 21668216, 10: 19795367}}

d = pd.DataFrame(a).T
#print d

f = plt.figure()
plt.xlabel("xTEST")
plt.ylabel("yTEST")

plt.ticklabel_format(style = 'plain')

plt.title('Title here!', color='black')
d.plot(kind='bar', ax=f.gca())
plt.show()

最佳答案

当我运行您的示例时,xlabel 和 ylabel 在我的绘图上,只是在显示之外一点,具体取决于它的大小。

尝试添加一行:

plt.subplots_adjust(bottom=.25, left=.25)

或者简单地拉伸(stretch)显示窗口。

关于python - xlabel 和 ylabel 在 Pandas 图中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23508577/

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