Learn R Programming

dendextend (version 0.14.2)

remove_branches_edgePar: Remove all edgePar values from a dendrogram's branches

Description

Go through the dendrogram branches and remove its edgePar.

Usage

remove_branches_edgePar(object, ...)

Arguments

object
a dendrogram object
...
not used

Value

  • A dendrogram, after removing the edgePar attribute in all of its branches,

See Also

get_branches_attr, assign_values_to_branches_edgePar

Examples

Run this code
dend <- as.dendrogram(hclust(dist(USArrests[1:5,])))
dend <- color_branches(dend, 3)
par(mfrow = c(1,2))
plot(dend)
plot(remove_branches_edgePar(dend))

Run the code above in your browser using DataLab