To provide the most recent news and documentation www.pymvpa.org reflects the
development 2.0 series (renamed 0.6 series) of PyMVPA. If you are interested in the
documentation of the previous stable 0.4 series of PyMVPA, please
visit v04.pymvpa.org.
class mvpa2.clfs.stats.Nonparametric(dist_samples, correction='clip')¶
Non-parametric 1d distribution – derives cdf based on stored values.
Introduced to complement parametric distributions present in scipy.stats.
Parameters :
dist_samples : ndarray
Samples to be used to assess the distribution.
correction : {‘clip’} or None, optional
Determines the behavior when .cdf is queried. If None – no
correction is made. If ‘clip’ – values are clipped to lie
in the range [1/(N+2), (N+1)/(N+2)] (simply because
non-parametric assessment lacks the power to resolve with
higher precision in the tails, so ‘imagery’ samples are
placed in each of the two tails).