explain.binomial | R Documentation |
Step by step demonstration of the binomial distribution calculus.
explain.binomial(n,x,p)
x |
Should be a numbers. |
n |
Should be a numbers. |
p |
Should be a numbers. |
To calculate the binomial distribution, the user should give three number (the number of trials, probability of success and binomial random variable). The result is a discrete probability distribution that counts the number of successes in a sequence of n independent Bernoulli trials with a fixed probability p of occurrence of success between trials. We can saw the binomial distribution formule in the binomial_ help document.
Numeric result and the process of this calculus explained.
Each variable is a number. Example: n <- 3 | x <- 2 | p <- 0.7
Jose Manuel Gomez Caceres, josemanuel.gomezc@edu.uah.es
Juan Jose Cuadrado, jjcg@uah.es
Universidad de Alcala de Henares
#data creation
n = 3
x = 2
p = 0.7
explain.binomial(n,x,p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.