pdf_norm <- function(x, mu, sigma2) {
(
(
1 / sqrt(2 * pi * sigma2)
) *
exp(
-(
((x - mu)^2) / (2 * sigma2)
)
)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.