Standardize option in clustergram
이전 댓글 표시
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?
답변 (2개)
Georgy Gulbekyan
2011년 12월 23일
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
2011년 12월 23일
0 개 추천
I have the same problem!!!
카테고리
도움말 센터 및 File Exchange에서 Expression Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!