为图形添加图例
Posted
技术标签:
【中文标题】为图形添加图例【英文标题】:Add a legend to a figure 【发布时间】:2021-01-11 01:08:28 【问题描述】:这是代码
import matplotlib.pyplot as plt
from sklearn.datasets import load_iris
import numpy as np
fig, subs = plt.subplots(4,3) #setting the shape of the figure in one line as opposed to creating 12 variables
iris = load_iris() ##code as per the example
data = np.array(iris['data'])
targets = np.array(iris['target'])
cd = 0:'r',1:'b',2:"g"
cols = np.array([cd[target] for target in targets])
# Row 1
subs[0][0].scatter(data[:,0], data[:,1], c=cols)
subs[0][1].scatter(data[:,0], data[:,2], c=cols)
subs[0][2].scatter(data[:,0], data[:,3], c=cols)
# Row 2
subs[1][0].scatter(data[:,1], data[:,0], c=cols)
subs[1][1].scatter(data[:,1], data[:,2], c=cols)
subs[1][2].scatter(data[:,1], data[:,3], c=cols)
# Row 3
subs[2][0].scatter(data[:,2], data[:,0], c=cols)
subs[2][1].scatter(data[:,2], data[:,1], c=cols)
subs[2][2].scatter(data[:,2], data[:,3], c=cols)
#Row 4
subs[3][0].scatter(data[:,3], data[:,0], c=cols)
subs[3][1].scatter(data[:,3], data[:,1], c=cols)
subs[3][2].scatter(data[:,3], data[:,2], c=cols)
plt.show()
我有兴趣添加一个图例,指示红点代表'setosa'
、绿点代表'versicolor'
和蓝点代表'virginica'
。该图例将位于上图的底部和中心。我该怎么做?
我想我必须和fig.legend
一起玩,但我完全不知道该怎么做。
【问题讨论】:
【参考方案1】:您可以遍历其中一个子图中的目标,并使图例出现在该图之外。这是我用你的代码得到的:
代码如下:
import matplotlib.pyplot as plt
from sklearn.datasets import load_iris
import numpy as np
fig, subs = plt.subplots(4,3, constrained_layout=True) #setting the shape of the figure in one line as opposed to creating 12 variables
iris = load_iris() ##code as per the example
data = np.array(iris['data'])
target_names = iris['target_names']
targets = np.array(iris['target'])
cd = 0:'r',1:'b',2:"g"
cols = np.array([cd[target] for target in targets])
# Row 1
subs[0][0].scatter(data[:,0], data[:,1], c=cols)
subs[0][1].scatter(data[:,0], data[:,2], c=cols)
subs[0][2].scatter(data[:,0], data[:,3], c=cols)
# Row 2
subs[1][0].scatter(data[:,1], data[:,0], c=cols)
subs[1][1].scatter(data[:,1], data[:,2], c=cols)
subs[1][2].scatter(data[:,1], data[:,3], c=cols)
# Row 3
subs[2][0].scatter(data[:,2], data[:,0], c=cols)
subs[2][1].scatter(data[:,2], data[:,1], c=cols)
subs[2][2].scatter(data[:,2], data[:,3], c=cols)
# Row 4
subs[3][0].scatter(data[:,3], data[:,0], c=cols)
# loop for central subplot at last row
for t, name in zip(np.unique(targets), target_names):
subs[3][1].scatter(data[targets==t,3], data[targets==t,1], c=cd[t], label=name)
subs[3][1].legend(bbox_to_anchor=(2, -.2), ncol=len(target_names)) # you can play with bbox_to_anchor for legend position
subs[3][2].scatter(data[:,3], data[:,2], c=cols)
plt.savefig('legend')
编辑:我还发现了这个post in the matplotlib documentation,您可以在其中直接从散点图中提取散点元素(不使用for
循环)。我在 IRIS 数据集上进行了尝试,但无法使其工作。
【讨论】:
你做了一个垂直的图例。你能把那个图例横放在图的下面吗? 是的,设置bbox_to_anchor=(2, -.2)
和ncol=len(target_names)
可以解决问题(如果您要求3 列,标签将水平扩展)。我将编辑答案。
请注意,轴需要缩小,以防止图例与其他轴重叠太多。这可以通过在plt.subplots
函数中添加constrained_layout=True
来解决。
这太完美了! :D【参考方案2】:
将label='versicor'
等添加到您的一个子图中:
# Row 1
subs[0][0].scatter(data[:,0], data[:,1], c=cols, label='virginica')
subs[0][1].scatter(data[:,0], data[:,2], c=cols, label='setosa')
subs[0][2].scatter(data[:,0], data[:,3], c=cols, label='versicolor')
那么你可以在plt.show()
之前调用fig.legend(loc='lower center', ncol=3)
。
我已设置ncol=3
使其短而宽。
请参阅下面的示例:
import numpy as np
import matplotlib.pyplot as plt
a = range(1,11)
b = np.random.randn(10).cumsum()
c = np.random.randn(10).cumsum()
d = np.random.randn(10).cumsum()
fig, (ax1, ax2) = plt.subplots(2, figsize=(9,5))
ax1.plot(a,b, label = 'one')
ax1.plot(a,c, label = 'two')
ax1.plot(a,d, label = 'two')
ax2.plot(a,c)
fig.legend(loc='lower center', ncol=3)
plt.show()
【讨论】:
那没有回答我的问题。你能用我提供给你的例子让它工作吗? 我向您展示了要在您的代码中添加什么,并举了一个例子,但不确定如何回答问题。您是否像我展示的那样添加了label=species
? (我没有你的数据集)。
是的,你有数据集。你只需要使用from sklearn.datasets import load_iris
来导入它。目前,这个答案并不好。我不能用那个
我没有安装sklearn,也不想安装。以上是关于为图形添加图例的主要内容,如果未能解决你的问题,请参考以下文章