python histogram change bin width code example
Example: 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