在熊猫情节中看不到xlabel和ylabel

时间:2014-05-07 04:10:03

标签: python matplotlib pandas

如何在下图中看到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()

1 个答案:

答案 0 :(得分:4)

当我运行你的例子时,xlabel和ylabel在我的情节中,只是在显示器外面,取决于它的大小。

尝试添加以下行:

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

或只是拉伸显示窗口。