import matplotlib.pyplot as plt
class Plot_it_for_me:
def flow_rate_graph(self, num, name):
figure, axes=plt.subplots()
title='Case ' + str(num) + ' ' + name
figure.canvas.set_window_title(title)
axes.set_title(title)
axes.set_xlable('units in milisecond')
axes.set_ylable(name +' in Hz')
plt.plot([1,2,3],[3,2,1])
#And do the plotting
plt.show()
axes.legend()
为什么会出现以下错误?
AttributeError:'AxesSubplot'对象没有属性'set_xlable'
我正在使用Python 2.7和Anaconda。