Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « scipy.special »

Fonction smirnovi - module scipy.special

Signature de la fonction smirnovi

Description

smirnovi.__doc__

smirnovi(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

smirnovi(n, p)

Inverse to `smirnov`

Returns `d` such that ``smirnov(n, d) == p``, the critical value
corresponding to `p`.

Parameters
----------
n : int
  Number of samples
p : float array_like
    Probability

Returns
-------
float
    The value(s) of smirnovi(n, p), the critical values.

Notes
-----
`smirnov` is used by `stats.kstest` in the application of the
Kolmogorov-Smirnov Goodness of Fit test. For historial reasons this
function is exposed in `scpy.special`, but the recommended way to achieve
the most accurate CDF/SF/PDF/PPF/ISF computations is to use the
`stats.ksone` distribution.

See Also
--------
smirnov  : The Survival Function (SF) for the distribution
scipy.stats.ksone : Provides the functionality as a continuous distribution
kolmogorov, kolmogi, scipy.stats.kstwobign : Functions for the two-sided distribution