图例中的多行(带有不同的标记)

时间:2018-08-11 18:40:06

标签: python matplotlib

我想在图例中显示具有相同标签但具有不同标记的多行。

我要绘制的图形与此类似:

plot

但是LineCollection中没有标记设置,我希望每行都有不同的标记。

有什么主意吗?谢谢。

1 个答案:

答案 0 :(得分:2)

您显示的图片来自legend demo。类似于此处执行的操作,您可以将图例处理程序子类化以创建选择的图例。

这里可以使用HandlerTuple,以便可以直接提供图例中行的完整列表。

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.legend_handler import HandlerTuple


class HandlerLinesVertical(HandlerTuple):
    def create_artists(self, legend, orig_handle,
                   xdescent, ydescent, width, height, fontsize,
                   trans):
        ndivide = len(orig_handle)
        a_list = []
        for i, handle in enumerate(orig_handle):
            y = (height / float(ndivide)) * i -ydescent
            line = plt.Line2D(np.array([0,1])*width, [-y,-y])
            line.update_from(handle)
            line.set_marker(None)
            point = plt.Line2D(np.array([.5])*width, [-y])
            point.update_from(handle)
            for artist in [line, point]:
                artist.set_transform(trans)
            a_list.extend([line,point])
        return a_list

x = np.linspace(0, 5, 15)

fig, ax = plt.subplots()

markers = ["o", "s", "d", "+", "*"]
lines = []
for i, marker in zip(range(5),markers):
    line, = ax.plot(x, np.sin(x) - .1 * i, marker=marker)
    lines.append(line)

ax.legend([tuple(lines)], ["legend entry"], handler_map={tuple:HandlerLinesVertical()},
           handleheight=8 )
plt.show()

enter image description here