plot_tree {ccfindR} | R Documentation |
Visualize the output of build_tree
as a dendrogram.
plot_tree(tree, direction = "rightwards", cex = 0.7, ...)
tree |
List containing tree structure. Output from
|
direction |
|
cex |
Font size of edge/tip labels |
... |
Other parameters to |
Uses plot.phylo
to visualize cluster tree.
NULL
set.seed(1) x <- simulate_whx(nrow=50,ncol=100,rank=5) s <- scNMFSet(x$x) s <- vb_factorize(s,ranks=seq(2,8),nrun=5) tree <- build_tree(s,rmax=5) plot_tree(tree)