normpdf: Normal probability density function (pdf)

View source: R/stats.R

normpdfR Documentation

Normal probability density function (pdf)

Description

Returns the pdf of the normal distribution with mean MU and standard deviation SIGMA evaluated at the values in X

Usage

normpdf(x, mu = 0, sigma = 1)

Arguments

x

real value

mu

mean value

sigma

standard deviation

Value

numeric

Examples

xx <- c(0.003,0.026,0.015,-0.009,-0.014,-0.024,0.015,0.066,-0.014,0.039)
normpdf(0.01,mean(xx),sd(xx))


maxto/qapi documentation built on Feb. 1, 2024, 9:42 a.m.