Ejemplo 1: diagrama de barras de error en Python
x = [0,1,2,3,4,5]
y = [3,2,4,5,1,5]
yerr=[0.3,0.2,0.4,0.5,0.1,0.5]
fig, ax = plt.subplots(figsize=(8,8))
ax.errorbar(x, y, yerr=yerr, fmt='-o', color='k')
ax.set_title('My title')
ax.set_ylabel('My ylabel')
ax.set_xlabel('My xlabel')
plt.show()
Ejemplo 2: barras de error de matplotlib
#Plot symmetric error bar in both dimension
#if only one dimension needed, omit xerr or yerr
plt.errorbar(x, y, xerr=xerr, yerr=yerr)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)