powered by
This function calculates the normal distribution probability density.
normal(x = NULL, learn = FALSE, interactive = FALSE)
The normal probability density (for non-interactive mode)
Optional numeric value (not needed for interactive mode)
Logical, if TRUE shows step-by-step explanation
Logical, if TRUE enables interactive practice mode
x <- 0.1 # Simple calculation normal(x) # Learning mode normal(x, learn = TRUE) # Interactive mode if(interactive()){ normal(interactive = TRUE) }
Run the code above in your browser using DataLab