
Last chance! 50% off unlimited learning
Sale ends in
Variance of the Hypergeometric distribution where we have a sample of k balls from an urn containing N of which m are white and n are black.
V_hyper(N = n + m, m, n = N - m, k)
Total number of balls (white and black) in the urn.
Number of white balls in the urn.
Number of black balls in the urn. Can specify n instead of N.
Number of balls drawn from the urn, k = 0, 1, ..., m + n.
Function :
Invalid parameter values will return an error detailing which parameter is problematic.
The Hypergeometric distribution for
Other Hypergeometric Distribution:
E_hyper()
# NOT RUN {
# With total balls specified
V_hyper(N = 5, m = 2, k = 2)
# With number of each colour of balls specified
V_hyper(m = 2, n = 3, k = 2)
# }
Run the code above in your browser using DataLab