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