1
2
3
4
5
6
7
8
9 """PyMVPA datasets and helper classes such as mappers, splitters
10
11 Module Description
12 ==================
13
14 `Dataset` and derived classes are dedicated to contain the data and
15 associated information (such as labels, chunk(session) identifiers.
16
17 Module Organization
18 ===================
19
20 The mvpa.datasets module contains the following modules:
21
22 .. packagetree::
23 :style: UML
24
25 :group Generic Datasets: base, mapped, masked, meta
26 :group Specialized Datasets: nifti, eep
27 :group Mappers: mapper, maskmapper
28 :group Metrics: metric
29 :group Splitters: splitter, nfoldsplitter
30 :group Miscellaneous: miscfx
31
32
33 """
34
35 __docformat__ = 'restructuredtext'
36
37 if __debug__:
38 from mvpa.base import debug
39 debug('INIT', 'mvpa.datasets')
40
41
42 from mvpa.datasets.base import Dataset
43
44 if __debug__:
45 debug('INIT', 'mvpa.datasets end')
46