normal {UAHDataScienceSF} | R Documentation |
Normal Distribution Function
Description
This function calculates the normal distribution probability density.
Usage
normal(x = NULL, learn = FALSE, interactive = FALSE)
Arguments
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 |
Value
The normal probability density (for non-interactive mode)
Examples
x <- 0.1
# Simple calculation
normal(x)
# Learning mode
normal(x, learn = TRUE)
# Interactive mode
if(interactive()){
normal(interactive = TRUE)
}
[Package UAHDataScienceSF version 1.0.0 Index]