View source: R/normal_distribution.R
normal | R Documentation |
This function calculates the normal distribution probability density.
normal(x = NULL, learn = FALSE, interactive = FALSE)
x |
Optional numeric value (not needed for interactive mode) |
learn |
Logical, if TRUE shows step-by-step explanation |
interactive |
Logical, if TRUE enables interactive practice mode |
The normal probability density (for non-interactive mode)
x <- 0.1
# Simple calculation
normal(x)
# Learning mode
normal(x, learn = TRUE)
# Interactive mode
if(interactive()){
normal(interactive = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.