[R] heatmap.2 in gplots package

Sean Davis sdavis2 at mail.nih.gov
Wed Feb 22 18:55:25 CET 2006




On 2/22/06 12:09 PM, "Akkineni,Vasundhara" <vasu.akkineni at louisville.edu>
wrote:

> Hello all,
> 
> I am using the heatmap.2 function in the gplots package. I want to supress the
> reordering of the columns of the data matrix i pass to the function. I used
> the statement,
> 
> heatmap.2(z,Colv=FALSE,dendrogram="row",col=redgreen(75))
> 
> where z, is the matrix of data. The output i want should have the rows
> reordered along with the dendrogram and the columns should be in the original
> order without any dendrogram. For the above statement i am getting an error:
> 
> Error in image.default(1:nc, 1:nr, x, xlim = 0.5 + c(0, nc), ylim = 0.5 +  :
>         dimensions of z are not length(x)(+1) times length(y)(+1)
> 
> I also tried using ,
> heatmap.2(z,Colv=NULL,dendrogram="row",col=redgreen(75))
> for which i am getting the output, but the columns are reordered. How can this
> be done for the way in which i want the map to appear?

Use Colv=1:ncol(z), I think.

Sean




More information about the R-help mailing list