search for: docdend

Displaying 1 result from an estimated 1 matches for "docdend".

2013 Mar 12
1
Request for more flexibility in heatmap() width / height ratio
...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, default behavior does not change and lead to square ratio. Changing "width" from 1 to 2 would lead to a figure...