Standardize option in clustergram
Afficher commentaires plus anciens
I just upgraded from 2010b to 2011b. And when using clustergram object, I need to the 'Standardize' option to be 'None' but I can't set the 'Standardize' option. In the previous version, 2010b, it worked fine. But now, whenever I try to set it, it is fixed as 'Row'.
My option set is like this:
cObj = clustergram(data, ... 'ColumnLabels', cLabel, ... 'RowLabels', genes, ... 'Standardize', 'none', ... 'Cluster', 'column', ... 'Linkage', 'complete', ... 'Symmetric', false)
Is there anything that I am doing wrong?
Réponses (2)
Georgy Gulbekyan
le 23 Déc 2011
Ohhhh, I have a solution now:
just set a Standardize property after creating CG object:
CGobj=clustergram(...)
set(CGobj,'Standardize',3)
view(CGobj)
Ta-da-dam!
Georgy Gulbekyan
le 23 Déc 2011
0 votes
I have the same problem!!!
Catégories
En savoir plus sur Expression Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!