Trees | Indices | Help |
|
---|
|
1 # 2 # Copyright (C) 2002 greg Landrum and Rational Discovery LLC 3 # All Rights Reserved 4 # 5 6 12 13 19 20 26 27 28 _availTransforms = [ 29 ('Center', _CenterTForm, 'translates so that mean(x)=0'), 30 ('Normalize', _NormalizeTForm, 'scales so that dot(x,x)=1'), 31 ('Standardize', _StandardTForm, 'scales so that dev(x)=0'), 32 ] 33 3436 """ returns the list of available data transformations 37 38 **Returns** 39 40 a list of 3-tuples 41 42 1) name of the transform (text) 43 44 2) function describing the transform (should take an 45 _MLDataSet_ as an argument) 46 47 3) description of the transform (text) 48 49 """ 50 global _availTransforms 51 return _availTransforms52
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Mar 26 11:18:47 2018 | http://epydoc.sourceforge.net |