# S3 method for dendrogram
as.Node(
x,
name = "Root",
heightName = "plotHeight",
check = c("check", "no-warn", "no-check"),
...
)
Value
The root Node of a data.tree
Arguments
x
The dendrogram
name
The name of the root Node
heightName
The name under which the dendrogram's height is stored
check
Either
"check": if the name conformance should be checked and warnings should be printed in case of non-conformance (the default)
"no-warn": if the name conformance should be checked, but no warnings should be printed in case of non-conformance (if you expect non-conformance)
"no-check" or FALSE: if the name conformance should not be checked; use this if performance is critical. However, in case of non-conformance, expect cryptic follow-up errors
...
Additional parameters
See Also
Other as.Node:
as.Node.data.frame(),
as.Node.list(),
as.Node.phylo(),
as.Node.rpart(),
as.Node()