25

我正在绘制一系列带有 x 和 y 错误的数据点,但不希望错误栏包含在图例中(仅标记)。有没有办法这样做?

如何避免图例中的错误栏?

例子:

import matplotlib.pyplot as plt
import numpy as np
subs=['one','two','three']
x=[1,2,3]
y=[1,2,3]
yerr=[2,3,1]
xerr=[0.5,1,1]
fig,(ax1)=plt.subplots(1,1)
for i in np.arange(len(x)):
    ax1.errorbar(x[i],y[i],yerr=yerr[i],xerr=xerr[i],label=subs[i],ecolor='black',marker='o',ls='')
ax1.legend(loc='upper left', numpoints=1)
fig.savefig('test.pdf', bbox_inches=0)
4

4 回答 4

28

您可以修改图例处理程序。请参阅matplotlib 的图例指南。调整你的例子,这可能是:

import matplotlib.pyplot as plt
import numpy as np

subs=['one','two','three']
x=[1,2,3]
y=[1,2,3]
yerr=[2,3,1]
xerr=[0.5,1,1]
fig,(ax1)=plt.subplots(1,1)

for i in np.arange(len(x)):
    ax1.errorbar(x[i],y[i],yerr=yerr[i],xerr=xerr[i],label=subs[i],ecolor='black',marker='o',ls='')

# get handles
handles, labels = ax1.get_legend_handles_labels()
# remove the errorbars
handles = [h[0] for h in handles]
# use them in the legend
ax1.legend(handles, labels, loc='upper left',numpoints=1)


plt.show()

这产生

输出图像

于 2013-03-21T15:41:51.433 回答
4

这是一个丑陋的补丁:

pp = []
colors = ['r', 'b', 'g']
for i, (y, yerr) in enumerate(zip(ys, yerrs)):
    p = plt.plot(x, y, '-', color='%s' % colors[i])
    pp.append(p[0])
    plt.errorbar(x, y, yerr, color='%s' % colors[i])  
plt.legend(pp, labels, numpoints=1)

下面是一个例子:

在此处输入图像描述

于 2013-01-18T21:49:44.190 回答
1

公认的解决方案在简单的情况下有效,但在一般情况下无效。特别是,它在我自己更复杂的情况下不起作用。

我找到了一个更强大的解决方案,它可以测试ErrorbarContainer,它确实对我有用。它是由Stuart WD Grieve提出的,为了完整起见,我在这里复制它

import matplotlib.pyplot as plt
from matplotlib import container

label = ['one', 'two', 'three']
color = ['red', 'blue', 'green']
x = [1, 2, 3]
y = [1, 2, 3]
yerr = [2, 3, 1]
xerr = [0.5, 1, 1]

fig, (ax1) = plt.subplots(1, 1)

for i in range(len(x)):
    ax1.errorbar(x[i], y[i], yerr=yerr[i], xerr=xerr[i], label=label[i], color=color[i], ecolor='black', marker='o', ls='')

handles, labels = ax1.get_legend_handles_labels()
handles = [h[0] if isinstance(h, container.ErrorbarContainer) else h for h in handles]

ax1.legend(handles, labels)

plt.show()

它产生以下图(在 Matplotlib 3.1 上)

在此处输入图像描述

于 2020-01-23T11:22:03.377 回答
-2

如果我将 label 参数设置为 None 类型,我会为我工作。

plt.errorbar(x, y, yerr, label=None)
于 2019-05-17T22:31:43.100 回答