如何在下图中看到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()
答案 0 :(得分:4)
尝试添加以下行:
plt.subplots_adjust(bottom=.25, left=.25)
或只是拉伸显示窗口。