File size: 732 Bytes
b0b1bdf
652752d
b0b1bdf
 
 
652752d
 
 
 
b0b1bdf
652752d
b0b1bdf
 
 
 
 
 
652752d
b0b1bdf
 
 
 
 
 
652752d
b0b1bdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""``picarones.measurements.statistics.wilcoxon`` — shim re-export (déprécié, suppression 2.0).

Canonique : :mod:`picarones.evaluation.statistics.wilcoxon`.  Migration ::

    from picarones.evaluation.statistics import ...
"""

from __future__ import annotations

import warnings

from picarones.evaluation.statistics.wilcoxon import (
    compute_pairwise_stats,
    wilcoxon_test,
    _SCIPY_AVAILABLE,
    _normal_sf,
)

warnings.warn(
    "picarones.measurements.statistics.wilcoxon is deprecated and will be "
    "removed in 2.0.  Import from picarones.evaluation.statistics instead.",
    DeprecationWarning,
    stacklevel=2,
)

__all__ = ['compute_pairwise_stats', 'wilcoxon_test', '_SCIPY_AVAILABLE', '_normal_sf']