File: get_childrens_heights.Rd

package info (click to toggle)
r-cran-dendextend 1.16.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,936 kB
  • sloc: sh: 13; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (3)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/attr_access.R
\name{get_childrens_heights}
\alias{get_childrens_heights}
\title{Get height attributes from a dendrogram's children}
\usage{
get_childrens_heights(dend, ...)
}
\arguments{
\item{dend}{a dendrogram.}

\item{...}{not used.}
}
\value{
a vector of the heights of a dendrogram's current node's
(first level) children.
}
\description{
Get height attributes from a dendrogram's children nodes
}
\examples{

hc <- hclust(dist(USArrests[1:4, ]), "ave")
dend <- as.dendrogram(hc)
get_childrens_heights(dend)
}
\seealso{
\link{get_branches_heights}
}