Hi, I'm doing hierarchical clustering, and want to export my dendrogram to a tree-viewing/editing software. I can do this by converting the data to Newick format (hc2Newick in ctc package), but I can't get branch lengths to show in the resulting phylogram. I figured it might help to convert my hclust object into a phylo object (as.phylo in ape package), but the following lines give me this "Error in UseMethod("as.phylo") : no applicable method for 'as.phylo' applied to an object of class "character":
data = read.table("C:/path/data.txt") d <- dist(data, method = "euclidean") library(ape) fit <- as.phylo(hclust(d, method="ward") library(ctc) write.table(as.phylo(hc2Newick(fit), file="C:/path/output.txt",row.names=FALSE,col.names=FALSE)) Would anyone have an idea about how to make this work? Thanks so much in advance! Julian -- View this message in context: http://r.789695.n4.nabble.com/Hclust-tree-to-Figtree-w-branch-lengths-tp4655990.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.