Calculate pdf of distribution

Viewed 179

I have a normal distribution how can I calculate pdf(probability density function) value from it

#Distribution
from scipy import stats
Distribution = stats.norm(10, 9)
1 Answers
from scipy import stats

def pdf(x):
    return Distribution.pdf(x)

pdf(10) 

--> 0.04432692004460363

Related