Plot statist. histogram

 avataruser_6939821
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()