Plot statist. histogram
user_6939821
python
08/04/2023 9:33 AM
188 B
17
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()