| [ Web Proxy ] |
| Viewing: https://matplotlib.org/stable/api/_as_gen/../../plot_types/unstructured/../stats/hist_plot.html | [Back] [Original] |
Note
Go to the end to download the full example code.
Compute and plot a histogram.
See hist.
[hist plot]import matplotlib.pyplot as plt
import numpy as np
plt.style.use('_mpl-gallery')
# make data
np.random.seed(1)
x = 4 + np.random.normal(0, 1.5, 200)
# plot:
fig, ax = plt.subplots()
ax.hist(x, bins=8, linewidth=0.5, edgecolor="white")
ax.set(xlim=(0, 8), xticks=np.arange(1, 8),
ylim=(0, 56), yticks=np.linspace(0, 56, 9))
plt.show()
| Web Proxy Viewer | New URL | Original Page |