I've following code-
import scipy.stats as scipystats
print(scipystats.distributions.norm.pdf(1384, 1384, 373))
which prints output of 0.0010695503496
which doesn't make sense to me.
What I am trying to do is calculate value of PDF at 1384 given mean of 1384 and std. deviation of 373. I would expect value of PDF at 1384 to be close to 1 as it lies exactly on mean. What am I doing wrong?