I have a Python histogram.
I want to normalise the peak of the histogram to 1 so that only the relative height of the bars is important.
I see some methods of doing this that involve changing the bin width, but I don't want to do this.
I also realise that I could just change the labels of the y axis, but I also have another plot overlaid, so the yticks must be the actual values.
Is there no way to access and change the histogram "count" in each bin?
Thank you.