标签未在Matplotlib中显示ax.set_xlabels

时间:2017-07-24 03:46:58

标签: python matplotlib labels

出于某种原因,我的xlabels没有显示在此图表上。我无法弄清楚它为什么不起作用。任何帮助,将不胜感激。我的代码如下:

fig, ax = plt.subplots(nrows = 1, ncols = 1, figsize = (10,6))
plt.hist(result, bins = 100, axes = ax)
ax.axvline(x = 269, color = 'black')
ax.axvline(x = 332, color = 'red', ymax = 0.5)
ax.set_xlabels = 'Obama Electoral College Votes'
plt.show()

enter image description here

1 个答案:

答案 0 :(得分:2)

您无法为set_xlabel赋值,它是一个函数,需要您可以使用的参数/参数 ax.set_xlabel('Obama Electoral College Votes')