HYPGEOM_DIST
Returns the hypergeometric distribution.
Syntax
expression.HYPGEOM_DIST(arg1, arg2, arg3, arg4, arg5);
expression
- A variable that represents a ApiWorksheetFunction class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
arg1 | Required | ApiRange | ApiName | number | The number of successes in the sample. | |
arg2 | Required | ApiRange | ApiName | number | The size of the sample. | |
arg3 | Required | ApiRange | ApiName | number | The number of successes in the population. | |
arg4 | Required | ApiRange | ApiName | number | The population size. | |
arg5 | Required | ApiRange | ApiName | boolean | A logical value (true or false) that determines the function form. If it is true, the function returns the cumulative distribution function. If it is false, the function returns the probability mass function. |
Returns
number
Example
This example shows how to get the hypergeometric distribution.
- Code
- Result
// How to get a result from a hypergeometric distribution.
// Use a function to get the result of hypergeometric distribution.
let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.HYPGEOM_DIST(2, 3, 3, 12, true));