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

Source Code for Package mvpa.datasets

 1  # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  # vi: set ft=python 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 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 channel eep event 
27  :group Splitters: splitter 
28  :group Miscellaneous: miscfx miscfx_sp 
29   
30   
31  """ 
32   
33  __docformat__ = 'restructuredtext' 
34   
35  if __debug__: 
36      from mvpa.base import debug 
37      debug('INIT', 'mvpa.datasets') 
38   
39  # nothing in here that works without the base class 
40  from mvpa.datasets.base import Dataset 
41   
42  if __debug__: 
43      debug('INIT', 'mvpa.datasets end') 
44