mergematrix-class | R Documentation |
Objects of class 'mergematrix'
hold the merge matrix in the same way that a consmatrix object holds a consensus matrix. As merge matrices only
make sense in the context of the consensus clustering results that were used to generate them we do not store the meta-data for any one consensus clustering parameter set
as we do for a 'consmatrix' object. All we need to identify the 'mergematrix' is the cluster number.
Objects can be created by calls of the form new("mergematrix", ...)
, although they are normally generated by the cluscomp
function when merge is specfied.
cm
:Object of class "matrix"
- the merge matrix itself
k
:Object of class "numeric"
- the cluster number (k) value for which the merge was calculated
a
:Object of class "character"
- always takes the value of 'merge' to identify it as a merge matrix
Dr. T. Ian Simpson ian.simpson@ed.ac.uk
Merged consensus clustering to assess and improve class discovery with microarray data. Simpson TI, Armstrong JD and Jarman AP. BMC Bioinformatics 2010, 11:590.
Also see the cluscomp
function.
showClass("mergematrix") #load the cmr data(testcmr); #get a merge matrix object mm <- testcmr$merge_k4; #plot a heatmap of the merge matrix heatmap(mm@cm);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.