| [ Web Proxy ] |
| Viewing: https://riptutorial.com/matplotlib/example/24345/simple-histogram | [Back] [Original] |
[logo rip]
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]
| Web Proxy Viewer | New URL | Original Page |