SciPy

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

scipy.special.fdtrc

scipy.special.fdtrc(dfn, dfd, x) = <ufunc 'fdtrc'>

F survival function.

Returns the complemented F-distribution function (the integral of the density from x to infinity).

Parameters
dfnarray_like

First parameter (positive float).

dfdarray_like

Second parameter (positive float).

xarray_like

Argument (nonnegative float).

Returns
yndarray

The complemented F-distribution function with parameters dfn and dfd at x.

See also

fdtr

Notes

The regularized incomplete beta function is used, according to the formula,

\[F(d_n, d_d; x) = I_{d_d/(d_d + xd_n)}(d_d/2, d_n/2).\]

Wrapper for the Cephes [1] routine fdtrc.

References

1

Cephes Mathematical Functions Library, http://www.netlib.org/cephes/

Previous topic

scipy.special.fdtr

Next topic

scipy.special.fdtri