plt.hist in python code example

Example 1: plt normalized histogram

plt.hist(data, density=True)

Example 2: matplotlib hist

# Import packages
import 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")

Example 3: plt.hist using bins

counts, bins = np.histogram(data)
plt.hist(bins[:-1], bins, weights=counts)

Example 4: python matpotlib histplot

import matplotlib.pyplot as plt
plt.hist(x) #x is a array of numbers
plt.show()