cal_node_limit: Calculate the x coordinates given a branch of dendrogram

Description Usage Arguments Value Examples

View source: R/cal_node_limit.R

Description

cal_node_limit is a code modified from plotNodeLimit() to x coordinates of branches given a branch of dendrogram.

Usage

1
cal_node_limit(x1, x2, subtree, center)

Arguments

x1

A x coordinatex1

x2

Another x coordinatex2

subtree

A dendrogram object.subtree

center

A logical whether the dendrogram is centered.center

Value

output A list of parameters.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#generate sample data
set.seed(1234); par(mar=c(0,0,0,0))
x <- rnorm(10, mean=rep(1:5, each=2), sd=0.4)
y <- rnorm(10, mean=rep(c(1,2), each=5), sd=0.4)
dataFrame <- data.frame(x=x, y=y, row.names=c(1:10))
#calculate Euclidian distance
distxy <- dist(dataFrame)
#hierachical clustering "complete" linkage by default
hc <- hclust(distxy)

total <- cal_total_length(as.dendrogram(hc))

dendsort documentation built on April 20, 2021, 5:05 p.m.