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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/attr_access.R
\name{assign_values_to_nodes_nodePar}
\alias{assign_values_to_nodes_nodePar}
\title{Assign values to nodePar of dendrogram's nodes}
\usage{
assign_values_to_nodes_nodePar(
dend,
value,
nodePar = c("pch", "cex", "col", "xpd", "bg"),
warn = dendextend_options("warn"),
...
)
}
\arguments{
\item{dend}{a dendrogram object}
\item{value}{a new value vector for the nodePar attribute. It should be
the same length as the number of nodes in the tree. If not, it will recycle
the value and issue a warning.}
\item{nodePar}{the value inside nodePar to adjust.
This may contain components named pch, cex, col, xpd, and/or bg.}
\item{warn}{logical (default from dendextend_options("warn") is FALSE).
Set if warning are to be issued, it is safer to keep this at TRUE,
but for keeping the noise down, the default is FALSE.}
\item{...}{not used}
}
\value{
A dendrogram, after adjusting the nodePar attribute in all of its nodes,
}
\description{
Go through the dendrogram nodes and updates the values inside its nodePar
If the value has Inf then the value in edgePar will not be changed.
}
\examples{
\dontrun{
dend <- USArrests[1:5, ] \%>\%
dist() \%>\%
hclust("ave") \%>\%
as.dendrogram()
# reproduces "labels_colors<-"
# although it does force us to run through the tree twice,
# hence "labels_colors<-" is better...
plot(dend)
dend2 <- dend \%>\%
assign_values_to_nodes_nodePar(value = 19, nodePar = "pch") \%>\%
assign_values_to_nodes_nodePar(value = c(1, 2), nodePar = "cex") \%>\%
assign_values_to_nodes_nodePar(value = c(2, 1), nodePar = "col")
plot(dend2)
### Making sure this works for NA with character.
dend \%>\%
assign_values_to_nodes_nodePar(value = 19, nodePar = "pch") \%>\%
assign_values_to_nodes_nodePar(value = c("red", NA), nodePar = "col") -> dend2
plot(dend2)
}
}
\seealso{
\link{get_leaves_attr}, \link{assign_values_to_leaves_nodePar}
}
|