Why do different versions of CLUSTERGRAM produce different results, in Bioinformatic Toolbox 4.2 (R2012b) ?

1 view (last 30 days)
Using the Bionformatic Toolbox 4.2, executing
clustergram(data)
produces different results than when using version 3.6.
How can I obtain the results of v3.6, using v4.2 ?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 19 Sep 2013
There is a bug in the documentation of MATLAB 8.0 (R2012b), which indicates that the default value of 'StandardizeValue' is :
'row' or 2 (default) — Standardize along the rows of data.
The default behavior of this function changed in MATLAB 8.0 (R2012b). The 'StandardizeValue' parameter is now 'NONE' by default as opposed to 'ROW' earlier.
A workaround for this, is to use
clustergram(data,'standardize', 'ROW');
in order to obtain the same results in v4.2

More Answers (0)

Categories

Find more on Genomics and Next Generation Sequencing in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2012b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!