ComDim (also known as CCSWA) is an unsupervised multi-block method that aims to simultaneously consider multiple data tables to find the latent components that are common to all the tables as well as those that are specific to each data table, along with the contribution of each of the tables to each of these components. ComDim determines a common space describing the dispersion of the samples in all the blocks, each block having a specific weight (salience) associated with each dimension in this common space. Significant differences in the saliences for a given dimension reflect the fact that the dimension contains different amounts of information coming from each block. In addition to the saliences, Local loadings for each analyzed block and two different sets of scores are obtained. The first set corresponds to the Local scores for each analyzed block while the second set is composed of the Global scores, common to all the blocks.
To successfully extract all the potential of the ComDim method, several functions coded in R are proposed. Some of them are listed below: MultiBlock(): To initialize a MultiBlock object with the first data-block(s). BuildMultiBlock(): To combine several single data-blocks into a MultiBlock object, containing some of them metadata information. ExpandMultiBlock(): To combine several single data-blocks into a MultiBlock object, containing some of them metadata information. NormalizeMultiBlock(): To normalize (some or all) the data-blocks of the MultiBlock object. ProcessMultiBlock(): To apply customized data transformation to (some or all) the data-blocks of the MultiBlock object. ComDim_PCA_MB(): This function applies the ComDim-PCA algorithm on the MultiBlock object resulting from BuildMultiBlock() or ExpandMultiBlock().
For more information on the usage of these functions, please consult the tutorial from the docs folder.
```{r install, echo = TRUE} if (!require("devtools")) install.packages("devtools") library("devtools") install_github("f-puig/R.ComDim")
# Load R.ComDim library("R.ComDim") ```
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.