The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

Rmergetrees

A package for fastly merging tree-like objects.

Install

devtools::install_github("AudreH/Rmergetrees")

```{r, echo = TRUE} nb_genes = 50 nb_indiv = 3 nb_trees = 10

list.trees = lapply(1:nb_trees, FUN = function(x){ set.seed(x) data_mat = matrix(rnorm(nb_genes*nb_indiv), ncol = nb_indiv, nrow = nb_genes) return(hclust(dist(data_mat))) })


```{r, echo = TRUE}
mergedTree = merge.trees(hc.list = list.trees)
plot(mergedTree_noStd, main = "noStd")

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.