powered by
This function calculates the binomial distribution probability.
binomial_(n = NULL, x = NULL, p = NULL, learn = FALSE, interactive = FALSE)
The binomial probability (for non-interactive mode)
Optional number of trials (not needed for interactive mode)
Optional number of successes (not needed for interactive mode)
Optional probability of success (not needed for interactive mode)
Logical, if TRUE shows step-by-step explanation
Logical, if TRUE enables interactive practice mode
n <- 3 x <- 2 p <- 0.7 # Simple calculation binomial_(n, x, p) # Learning mode binomial_(n, x, p, learn = TRUE) # Interactive mode if(interactive()){ binomial_(interactive = TRUE) }
Run the code above in your browser using DataLab