Package mvpa :: Package datasets
[hide private]
[frames] | no frames]

Source Code for Package mvpa.datasets

 1  #emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  #ex: set sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyMVPA package for the 
 6  #   copyright and license terms. 
 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  # nothing in here that works without the base class 
42  from mvpa.datasets.base import Dataset 
43   
44  if __debug__: 
45      debug('INIT', 'mvpa.datasets end') 
46