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