gpt4 book ai didi

python - 只有 xerrors 的 Matplotlib errorbar - 错误的图例符号

转载 作者:行者123 更新时间:2023-11-28 22:15:08 28 4
gpt4 key购买 nike

当我这样做

import matplotlib.pyplot as plt
plt.errorbar(0., 0., xerr=1., capsize=3, capthick=3, label="wrong shape")
plt.legend()
plt.show()

我明白了

enter image description here

我认为这是不正确的,因为图例符号的线超出了左侧和右侧的端盖。我怎样才能修复它,使图例符号只是 |--| 而不是 -|--|-

最佳答案

Matplotlib 在这种情况下工作正常。您必须使用关键字 handlelength 来指定行的长度。

import matplotlib.pyplot as plt
plt.errorbar(0., 0., xerr=1., capsize=3, capthick=3, label="wrong shape")
plt.legend(handlelength=1.)
plt.show()

enter image description here

关于python - 只有 xerrors 的 Matplotlib errorbar - 错误的图例符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53001210/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com