python plot:object没有属性'set_xlable'

时间:2016-11-28 00:37:53

标签: python matplotlib

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。

1 个答案:

答案 0 :(得分:2)

您正在寻找的方法是set_xlabel,而不是set_xlabledocumentation link)。