Esta división fue aprobado por especialistas para asegurar la exactitud de nuestra esta sección.
Ejemplo 1: histograma plt normalizado
plt.hist(data, density=True)
Ejemplo 2: matplotlib hist
# Import packagesimport matplotlib.pyplot as plt
%matplotlib inline
# Create the plot
fig, ax = plt.subplots()# Plot the histogram with hist() function
ax.hist(x, edgecolor ="black", bins =5)# Label axes and set title
ax.set_title("Title")
ax.set_xlabel("X_Label")
ax.set_ylabel("Y_Label")
Ejemplo 3: plt.hist usando contenedores
counts, bins = np.histogram(data)
plt.hist(bins[:-1], bins, weights=counts)
Ejemplo 4: python matpotlib histplot
import matplotlib.pyplot as plt
plt.hist(x)#x is a array of numbers
plt.show()
valoraciones y reseñas
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)