Returns the probability from a negative binomial distribution.
Category: | Probability |
Returned data type: | DOUBLE |
is a numeric probability of success parameter.
Range | 0 ≤ p ≤ 1 |
Data type | DOUBLE |
is an integer number of successes parameter.
Range | n ≥ 1 |
Data type | INTEGER |
is a positive integer random variable, the number of failures.
Range | m ≥ 0 |
Data type | INTEGER |
Statements
|
Results
|
---|---|
select probnegb(0.5,2,1); |
0.5 |