出于某种原因,我的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()
答案 0 :(得分:2)
您无法为set_xlabel
赋值,它是一个函数,需要您可以使用的参数/参数
ax.set_xlabel('Obama Electoral College Votes')