matplotlib图例中的选择性垂直空白

时间:2016-06-24 17:58:15

标签: python matplotlib legend

我试图在使用matplotlib.pyplot制作的图例中创建一些额外的垂直空白。但是,希望此额外空格仅在图例中的两个条目之间,而其余条目保持不变。我有一个MWE和它产生的图像,编辑以显示我想要额外的空白。

import matplotlib.pyplot as plt

plt.plot([0,1],[.2,.2],label = "A")
plt.plot([0,1],[.4,.4],label = "B")
plt.plot([0,1],[.6,.6],label = "C")
plt.plot([0,1],[.8,.8],label = "D")

plt.legend(loc='upper right',labelspacing=.3)
plt.ylim(0,1)

plt.show()

enter image description here

2 个答案:

答案 0 :(得分:2)

您可能必须使用代理艺术家。这是一个例子:

a, = plt.plot([0,1],[.2,.2],label = "A")
b, = plt.plot([0,1],[.4,.4],label = "B")
c, = plt.plot([0,1],[.6,.6],label = "C")
d, = plt.plot([0,1],[.8,.8],label = "D")

plt.legend([a,b,c,matplotlib.lines.Line2D([],[],linestyle=''),d],['A','B','C','','D'], loc='upper right',labelspacing=.3)
plt.ylim(0,1)

enter image description here

答案 1 :(得分:0)

您可以在标签中使用 \n

请注意,标签以标记为中心,因此使用 2 \n

plt.plot([0,1],[.6,.6],label = "\nC\n")