1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/attr_access.R
\name{remove_nodes_nodePar}
\alias{remove_nodes_nodePar}
\title{Remove all nodePar values from a dendrogram's nodes}
\usage{
remove_nodes_nodePar(dend, ...)
}
\arguments{
\item{dend}{a dendrogram object}
\item{...}{not used}
}
\value{
A dendrogram, after removing the nodePar attribute in all of its nodes,
}
\description{
Go through the dendrogram nodes and remove its nodePar
}
\examples{
\dontrun{
dend <- USArrests[1:5, ] \%>\%
dist() \%>\%
hclust() \%>\%
as.dendrogram()
dend <- color_branches(dend, 3)
par(mfrow = c(1, 2))
plot(dend)
plot(remove_branches_edgePar(dend))
}
}
\seealso{
\link{get_root_branches_attr}, \link{assign_values_to_branches_edgePar}
}
|