如何在matplotlib中的子图下面添加图例?

时间:2017-09-17 17:10:05

标签: python matplotlib legend subplot

我正在尝试在3列子图中添加一个图例。

我尝试了以下内容:

fig, ax = plt.subplots(ncols=3)
ax[0].plot(data1)
ax[1].plot(data2)
ax[2].plot(data3)

ax_sub = plt.subplot(111)
box = ax_sub.get_position()
ax_sub.set_position([box.x0, box.y0 + box.height * 0.1,box.width, box.height * 0.9])
ax_sub.legend(['A', 'B', 'C'],loc='upper center', bbox_to_anchor=(0.5, -0.3),fancybox=False, shadow=False, ncol=3)
plt.show()

但是,这只会创建一个空框架。当我注释掉ax_sub部分时,我的子图显示很好(但没有传说......)......

非常感谢!

这与How to put the legend out of the plot

密切相关

1 个答案:

答案 0 :(得分:0)

传奇需要知道应该展示什么。默认情况下,它将从创建的轴中获取标记的艺术家。由于此处轴ax_sub为空,因此图例也将为空。

使用ax_sub可能无论如何都没有多大意义。我们可以使用中轴(ax[1])来放置图例。但是,我们仍然需要所有应该出现在图例中的艺术家。对于线条来说这很容易; one会提供一个行列表作为handles参数的句柄。

import matplotlib.pyplot as plt
import numpy as np

data1,data2,data3 = np.random.randn(3,12)

fig, ax = plt.subplots(ncols=3)
l1, = ax[0].plot(data1)
l2, = ax[1].plot(data2)
l3, = ax[2].plot(data3)

fig.subplots_adjust(bottom=0.3, wspace=0.33)

ax[1].legend(handles = [l1,l2,l3] , labels=['A', 'B', 'C'],loc='upper center', 
             bbox_to_anchor=(0.5, -0.2),fancybox=False, shadow=False, ncol=3)
plt.show()

enter image description here