Standardize option in clustergram
Show older comments
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?
Answers (2)
Georgy Gulbekyan
on 23 Dec 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
on 23 Dec 2011
0 votes
I have the same problem!!!
Categories
Find more on Expression Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!