I am trying to plot the probability distribution function of a simulation that involved the 2-dimensional kinetic distribution. My result should be an exponentially decaying function and I require it to be normalized. To obtain this, I took my list (X) and I used
`plt.hist(X, bins= 100, density= 'True')`
The graph I'm obtaining:
According to the equation EXP(-x/c), for x = 0, the y-axis should be at 1. Can someone help me, please?