Histogram

Other topics

Simple histogram

import matplotlib.pyplot as plt
import numpy as np

# generate 1000 data points with normal distribution
data = np.random.randn(1000)

plt.hist(data)

plt.show()

enter image description here

Contributors

Topic Id: 7329

Example Ids: 24345

This site is not affiliated with any of the contributors.