I am currently using the following code to plot errorbar graphs.
plt.errorbar(log_I_mean_, log_V2_mean_, xerr, yerr, '.')
However, the end result shows a circular point in the center of each errorbar intersection point. How can I plot just the errorbars without the central point, as is required in scientific work?
