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 Datasets: dataset, mappeddataset, maskeddataset, niftidataset 
26  :group Mappers: mapper, maskmapper 
27  :group Metrics: metric 
28  :group Splitters: splitter, nfoldsplitter 
29  :group Miscellaneous TODO: should be gone somewhere else: misc 
30   
31   
32  """ 
33   
34  __docformat__ = 'restructuredtext' 
35   
36  if __debug__: 
37      from mvpa.misc import debug 
38      debug('INIT', 'mvpa.datasets') 
39   
40  # nothing in here that works without the base class 
41  from mvpa.datasets.base import Dataset 
42   
43  if __debug__: 
44      debug('INIT', 'mvpa.datasets end') 
45