Plot statist. histogram
user_6939821
python
2 years ago
140 B
5
Indexable
### Plot stat. histogram import matplotlib.pyplot as plt x = [value1, value2, value3,....] plt.hist(x, bins=number of bins) plt.show()
Editor is loading...
### Plot stat. histogram import matplotlib.pyplot as plt x = [value1, value2, value3,....] plt.hist(x, bins=number of bins) plt.show()