如何在出现在每条线图末尾的matplotlib中添加图例

时间:2019-05-21 00:14:23

标签: python matplotlib plot visualization

假设您有一个包含多条线的图,例如

plt.plot(np.arange(0, 10, 0.1), np.sin(np.arange(0, 10, 0.1)), label = 'sin')
plt.plot(np.arange(0, 10, 0.1), np.cos(np.arange(0, 10, 0.1)), label = 'cos')
plt.legend()

您将拥有一个类似

的情节

this

但是,如果有很多地块,这可能无法很好地工作。有没有一种优雅的方法可以将图例与相应的颜色一起移动到每个线条图的右侧,例如下列?  example

0 个答案:

没有答案