knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "README-" )
Bipartite Graph-based Hierarchical Clustering
Author: Calvin Chi
Bipartite graph-based hierarchical clustering performs hierarchical
clustering of groups of samples based on association patterns between two
sets of variables. It is developed for pharmacogenomic datasets and datasets
sharing the same data structure. In the context of pharmacogenomic datasets,
the samples are cell lines, and the two sets of variables are typically
expression levels and drug sensitivity values. For this method, sparse
canonical correlation analysis from Lee, W., Lee, D., Lee, Y. and
Pawitan, Y. (2011)
For standard use, we recommend installing the package from CRAN via
install.packages("hierBipartite")
Minimially sufficient example of using hierBipartite
. Please refer to the
vignette
for detailed usage.
library(hierBipartite) data(ctrp2) groups = ctrp2$groups X = ctrp2$X Y = ctrp2$Y result = hierBipartite(X, Y, groups)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.