Normed histogram y-axis larger than 1
问题 Sometimes when I create a histogram, using say seaborn's displot function, with norm_hist = True, the y-axis is less than 1 as expected for a PDF. Other times it takes on values greater than one. For example if I run sns.set(); x = np.random.randn(10000) ax = sns.distplot(x) Then the y-axis on the histogram goes from 0.0 to 0.4 as expected, but if the data is not normal the y-axis can be as large as 30 even if norm_hist = True. What am I missing about the normalization arguments for histogram