Hypergeometric Type
Hypergeometric distribution
Static members
| Static member | Description |
Full Usage:
Hypergeometric.CDF(N) (K) (n) (x)
Parameters:
int
-
K : int
-
n : int
-
x : float
-
Returns: float
|
|
Full Usage:
Hypergeometric.CheckParam(N) (K) (n)
Parameters:
int
K : int
n : int
|
|
Full Usage:
Hypergeometric.CheckParam_k(N) (K) (n) (k)
Parameters:
int
K : int
n : int
k : int
|
|
Full Usage:
Hypergeometric.Init(N) (K) (n)
Parameters:
int
-
The population size
K : int
-
The number of success states in the population
n : int
-
The number of draws
Returns: DiscreteDistribution<float, int>
|
Initializes a hypergeometric distribution. The hypergeometric distribution is a discrete probability distribution that describes the probability of `k` successes (random draws for which the object drawn has a specified feature) in `n` draws, without replacement, from a finite population of size `N` that contains exactly `K` objects with that feature, wherein each draw is either a success (`1.0`) or a failure (`0.0`).
Example
|
Full Usage:
Hypergeometric.InvCDF(dof1) (dof2) (p)
Parameters:
'a
-
dof2 : 'b
-
p : 'c
-
Returns: 'd
|
|
Full Usage:
Hypergeometric.Mean(N) (K) (n)
Parameters:
int
-
K : int
-
n : int
-
Returns: float
|
|
Full Usage:
Hypergeometric.Mode(N) (K) (n)
Parameters:
int
-
K : int
-
n : int
-
Returns: int
|
|
Full Usage:
Hypergeometric.PMF(N) (K) (n) (k)
Parameters:
int
-
K : int
-
n : int
-
k : int
-
Returns: float
|
|
Full Usage:
Hypergeometric.Sample(N) (K) (n)
Parameters:
int
-
K : int
-
n : int
-
Returns: int
|
|
Full Usage:
Hypergeometric.StandardDeviation(N) (K) (n)
Parameters:
int
-
K : int
-
n : int
-
Returns: float
|
|
Full Usage:
Hypergeometric.Support(N) (K) (n)
Parameters:
int
-
K : int
-
n : int
-
Returns: Interval<int>
|
|
Full Usage:
Hypergeometric.ToString(N) (K) (n)
Parameters:
int
K : int
n : int
Returns: string
|
|
Full Usage:
Hypergeometric.Variance(N) (K) (n)
Parameters:
int
-
K : int
-
n : int
-
Returns: float
|
FSharp.Stats