I'm trying to plot a distribution with distplot(), and I want
- absolute numbers instead of relative frequency on the y axis
- no fitted function
I thought that (1) could be achieved by setting norm_hist=False, but still, relative frequencies are shown on the y axis:
But no problem, I can work around that by directly setting the 'normed' keyword of the underlying pyplot.hist graph:
However, now I have the problem that the fitted function (created with pyplot.plot) still works on the normalized values and thus is somewhere on the bottom of the graph. I would like to completely get rid of the fitted plot. How do I do that? I thought setting fit=None would do the trick, but as you can see, it doesn't.
Any help is appreciated!
Lukas

