| as.dendrogram.Node {data.tree} | R Documentation |
Node to a dendrogramConvert a data.tree structure to a dendrogram
## S3 method for class 'Node' as.dendrogram(object, heightAttribute = DefaultPlotHeight, edgetext = FALSE, ...)
object |
The Node to convert |
heightAttribute |
The attribute (field name or function) storing the height |
edgetext |
If TRUE, then the for non-leaf nodes the node name is stored as the dendrogram's edge text. |
... |
Additional parameters |
An object of class dendrogram
Other Conversions from Node: ToNewick
data(acme) acmed <- as.dendrogram(acme) plot(acmed, center = TRUE) #you can take an attribute for the height: acme$Do( function(x) x$myPlotHeight <- (10 - x$level)) acmed <- as.dendrogram(acme, heightAttribute = "myPlotHeight") plot(acmed, center = TRUE) #or directly a function acmed <- as.dendrogram(acme, heightAttribute = function(x) 10 - x$level) plot(acmed)