I used the R code below to obtain a heatmap of some data;the heatmap displays a dendrogram at the top of the columns, but I would rather have the dendrogram to be shorter in length, so as to have enough space left at the bottom of the heatmap for some long column labels. Is there any way to tweak the lengths of dendrograms?
<- heatmap.2(t(mully), scale="none", Rowv=F,
col = myCol,
breaks = myBreaks,
dendrogram="row",
margins=c(0.55,8.4), cexRow=0.68, cexCol=0.9, key=FALSE,
labCol =NULL,
trace="none")
I would be happy to get some help.
James