Learn R Programming

ctc (version 1.46.0)

hc2Newick: Convert hclust objects to Newick format files

Description

Convert hclust objects to Newick format files.

Usage

hc2Newick(hc, flat=TRUE)

Arguments

hc
a hclust object (as returned by the function hclust in the package stats)
flat
a boolean (see section value).

Value

If flat=TRUE the result is a string (that you can write in a file).If flat=FALSE the result is a list (of lists). Each list is consituted of the elements left, right and dist.

References

Antoine Lucas and Sylvain Jasson, Using amap and ctc Packages for Huge Clustering, R News, 2006, vol 6, issue 5 pages 58-60.

Examples

Run this code
data(USArrests)
h = hclust(dist(USArrests))
write(hc2Newick(h),file='hclust.newick')

Run the code above in your browser using DataLab