dnorm() and dgamma() are used to return the density of a given distribution function. How we interpret their value? For example, if the mark of stat students is normally distributed with mean 2 and standard deviation 0.5. Then dnorm(3,2,0.5) will give 0.1078919. So what does it mean? Can I say that the probability density that a student got 3 in the stat exam is 0.10?
Kindly note that I am not asking about the difference between probability density and probability. I am asking what does the value of dnorm means at a single value? How to explain the return value?
dnormfunction returns a value in excess of $1$, such asdnorm(0, 0, 1/5)? – Dave Jul 11 '22 at 17:07dnorm(3, 3, 1/5) = 1.99– Dave Jul 11 '22 at 17:11