2020
09-29
09-29
Python matplotlib画图时图例说明(legend)放到图像外侧详解
用python的matplotlib画图时,往往需要加图例说明。如果不设置任何参数,默认是加到图像的内侧的最佳位置。importmatplotlib.pyplotaspltimportnumpyasnpx=np.arange(10)fig=plt.figure()ax=plt.subplot(111)foriinxrange(5):ax.plot(x,i*x,label='$y=%ix$'%i)plt.legend()plt.show()这样的结果如图所示:如果需要将该legend移到图像外侧,有多种方法,这里介绍一种。在plt.legend()函数中加入若干参...
继续阅读 >