| Trees | Indices | Help |
|
|---|
|
|
1 # $Id: Standardize.py 997 2009-02-25 06:12:43Z glandrum $ 2 # 3 # Copyright (C) 2001-2008 greg Landrum 4 # 5 # @@ All Rights Reserved @@ 6 # 7 """ contains code for standardization of data matrices for clustering 8 9 10 """ 11 from rdkit.ML.Data import Stats 1214 """ the standard deviation classifier 15 16 This uses _ML.Data.Stats.StandardizeMatrix()_ to do the work 17 18 """ 19 return Stats.StandardizeMatrix(mat)20 21 methods = [ 22 ("None",lambda x:x,"No Standardization"), 23 ("Standard Deviation",StdDev,"Use the standard deviation"), 24 ] 25
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Fri Apr 3 06:05:44 2009 | http://epydoc.sourceforge.net |