How can I draw an errorbar graph without lines and points in Matplotlib?
问题 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? 回答1: use 'none' instead of '.' : import matplotlib.pyplot as plt x = np.arange(0.1, 4, 0.5) y = np.exp(-x) yerr = 0.1 + 0.2*np.sqrt(x) xerr = 0.1 + yerr plt.figure() plt.errorbar(x,