I have the following code in Python (3.4) Jupyter Notebook to plot a histogram:
%matplotlib notebook
import matplotlib.pyplot as plt
import matplotlib
import numpy as np
bins = np.linspace(0, 1.0, 40)
plt.hist(list1, bins, alpha = 0.5, color = 'b')
plt.show()
I am wondering can I rescale it so that the y-axis value has the maximum value of 100? Thanks!