编辑:
我强烈建议您使用importanceOfBeingErnest中的答案:
如何将图例排除在情节之外
这个更容易理解:
import matplotlib.pyplot as pltx = [1,2,3]plt.subplot(211)plt.plot(x, label="test1")plt.plot([3,2,1], label="test2")plt.legend(bbox_to_anchor=(0, 1), loc='upper left', ncol=1)plt.show()
现在使用to坐标(x,y)。对于
loc您可以使用:
valid locations are:rightcenter leftupper rightlower rightbestcenterlower leftcenter rightupper leftupper centerlower center
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)