1

我必须创建一个简单的图形来学习用 python 制作图形的属性。这些属性之一是图例位置。这样的代码是 ax.legend(loc="some number")。您在我提到的那段代码中输入的不同数字决定了图例的放置位置。然而,无论我输入什么数字,我的传奇永远不会改变位置。我是否缺少更深层次的问题,或者我的程序可能有问题?

def line_plot():
    x=np.linspace(-np.pi,np.pi,30)
    cosx=np.cos(x)
    sinx=np.sin(x)
    fig1, ax1 = plt.subplots()
    ax1.plot(x,np.sin(x), c='r', lw=3)
    ax1.plot(x,np.cos(x), c='b', lw=3)
    ax1.set_xlabel('x')
    ax1.set_ylabel('y')
    ax1.legend(["cos","sin"])
    ax1.legend(loc=0);
    ax1.set_xlim([-3.14, 3.14])
    ax1.set_xticks([-np.pi, -np.pi/2, 0, np.pi/2, np.pi])
    ax1.grid(True)
    ax1.set_xticklabels(['-'+r'$\pi$', '-'+r'$\pi$'+'/2',0, r'$\pi$'+'/2', r'$\pi$'])
    plt.show()

    return

if __name__ == "__main__":
    line_plot()
4

1 回答 1

1

当您绘制数据时,您需要给它们一个label以便显示图例。如果您不这样做,那么您将获得UserWarning: No labelled objects found. Use label='...' kwarg on individual plots.并且您将无法移动您的传奇。因此,您可以通过执行以下操作轻松更改此设置:

def line_plot():
    x=np.linspace(-np.pi,np.pi,30)
    cosx=np.cos(x)
    sinx=np.sin(x)
    fig1, ax1 = plt.subplots()
    ax1.plot(x,np.sin(x), c='r', lw=3,label='cos') #added label here
    ax1.plot(x,np.cos(x), c='b', lw=3,label='sin') #added label here
    ax1.set_xlabel('x')
    ax1.set_ylabel('y')
    #ax1.legend(["cos","sin"]) #don't need this as the plots are already labelled now
    ax1.legend(loc=0);
    ax1.set_xlim([-3.14, 3.14])
    ax1.set_xticks([-np.pi, -np.pi/2, 0, np.pi/2, np.pi])
    ax1.grid(True)
    ax1.set_xticklabels(['-'+r'$\pi$', '-'+r'$\pi$'+'/2',0, r'$\pi$'+'/2', r'$\pi$'])
    plt.show()

    return

if __name__ == "__main__":
    line_plot()

这给出了下面的图。现在更改 的值会loc更改图例的位置。

在此处输入图像描述

编辑:

1)我给了你自己绘制的每组数据label。然后,当您到达ax1.legend(loc=0)matplotlib 行时,将图例设置为在图例中包含这些标签。这是绘制图例的最“pythonic”方式。

于 2016-03-02T22:11:09.893 回答