I am trying to plot error bar in log scale. This is what I have been trying:
ax.errorbar(s, m1, std1)
ax.set_yscale("log", nonposy = "clip")
And this is what I got:
Does anyone have solution for this, it seems nonposy = "clip"
doesn't work in this case.