gpt4 book ai didi

python - 空心圆符号中的误差线

转载 作者:太空狗 更新时间:2023-10-30 03:03:40 30 4
gpt4 key购买 nike

当我使用 plt.errorbars 时,我希望灰色点完全不出现在空心圆符号内。我发现了一个类似的问题,但它使用了 ggplot。

Error bars show through open symbol

除非别无选择,否则我会坚持使用 pyplot。我的代码如下。提前致谢。

import numpy as np
import matplotlib.pyplot as plt

x = np.arange(0,5,0.1)
y = np.sin(x)
yerr = np.random.randint(2,size=len(x))
plt.errorbar(x,y,yerr=yerr, color='gray', fmt='.', zorder=1)
plt.plot(x,y,'ro', mfc='none', label='My work')
plt.legend(numpoints=1)
plt.show()

enter image description here

最佳答案

使用fmt='o':

plt.errorbar(x,y,yerr=yerr, color='gray', fmt='o', mfc='white', zorder=1)

包含 mfc='white' 以将标记的背景颜色设置为白色。

参见 plot对于其他 fmt 字符。

关于python - 空心圆符号中的误差线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18212313/

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