Displaying 1 result from an estimated 1 matches for "dordend".
Did you mean:
docdend
2013 Mar 12
1
Request for more flexibility in heatmap() width / height ratio
...html
But after a quick look at the "stats" package sources, this seems quite
easy to fix, without breaking backward compatibility :
[ src/library/stats/R/dendrogram.R ]
- line 689 : add "width=1" and "height=1" as arguments to heatmap()
- line 768 : lwid <- c(if(doRdend) 1 else 0.05, 4)
lwid <- c(if(doRdend) 1 else 0.05, width*4)
- line 769 : lhei <- c((if(doCdend) 1 else 0.05) + if(!is.null(main)) 0.2
else 0, 4)
lhei <- c((if(doCdend) 1 else 0.05) + if(!is.null(main))
0.2 else 0, height*4)
As the default values are 1, de...