Answers for "histogram with bins width python"

0

python - change the bin size of an histogram+

x = np.random.randn(1000)      # Generate random numbers
plt.hist(x, bins=20)           # Select bin size
plt.hist(x, bins=range(-4, 5)) # Select range
Posted by: Guest on July-06-2020

Code answers related to "histogram with bins width python"

Python Answers by Framework

Browse Popular Code Answers by Language