matplotlib - plot errorbars in background -
i'm using matplotlib plot point relative error bars. plotted empty points in way:
plt.errorbar(x,y, yerr=[y1,y2], marker='o', markeredgecolor='red', markerfacecolor='none')
how possible let error bars go in background?
use markerfacecolor='white'
option in function call, hide errorbar behind markerpoint.
Comments
Post a Comment