此问题在此处已有答案:
How to specify legend position in matplotlib in graph coordinates(5个答案)
7小时前关闭。
如何将图例移到图表内标题的正下方?
plt.plot([1, 2], [3, 4], color='r', label="Apple")
plt.plot([3, 4], [5, 6], color='g', label="Pear")
plt.title("Total Profit Trend by Month")
plt.legend()
plt.show()
1条答案
按热度按时间yh2wf1be1#
您可以用途:
plt.legend(loc='upper left')
,也可以将“upper left”替换为以下位置:右上、左下、右下、右、左中、右中、中下、中上、中。