1
2
3
4
5
6
7
8
9 """PyMVPA measures.
10
11 Module Description
12 ==================
13
14 Provide some measures given a dataset. Most of the time, derivatives of
15 `FeaturewiseDatasetMeasure` are used, such as
16
17 * `OneWayAnova`
18 * `CorrCoef`
19 * `IterativeRelief`
20 * `NoisePerturbationSensitivity`
21
22 Also many classifiers natively provide sensitivity estimators via the call to
23 `getSensitivityAnalyzer` method
24 """
25
26 __docformat__ = 'restructuredtext'
27
28 if __debug__:
29 from mvpa.base import debug
30 debug('INIT', 'mvpa.measures')
31
32 if __debug__:
33 debug('INIT', 'mvpa.measures end')
34