

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: INTR THY PROBAB&S I; Subject: STATISTICS; University: Iowa State University; Term: Unknown 1989;
Typology: Study notes
1 / 2
This page cannot be seen from the preview
Don't miss anything!


A discrete random variable is said to have a binomial distribution if
p(y) =
(n y
) py(1 − p)n−y^ for y = 0, 1 ,... , n
Working with binomial random variables in R.
sum(dbinom(y:n,n,p)) Finally, to get a list of all p(y) values for a particular binomial random variable Y , use the dbinom command to list all p(y) for values of y between and including 0 and n. dbinom(0:n,n,p)
2