SciPy

This is documentation for an old release of SciPy (version 0.16.0). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.special.bdtrc

scipy.special.bdtrc(k, n, p) = <ufunc 'bdtrc'>

Binomial distribution survival function.

Sum of the terms k+1 through n of the Binomial probability density

y = sum(nCj p**j (1-p)**(n-j), j=k+1..n)
Parameters:

k, n : int

Terms to include

p : float

Probability

Returns:

y : float

Sum of terms

Previous topic

scipy.special.bdtr

Next topic

scipy.special.bdtri