ClusterX | R Documentation |
This package implements the clustering algorithm described by Alex Rodriguez and Alessandro Laio (2014) with improvements of automatic peak detection and parallel implementation
ClusterX( data, dimReduction = NULL, outDim = 2, dc, gaussian = TRUE, alpha = 0.001, detectHalos = FALSE, SVMhalos = FALSE, parallel = FALSE, nCore = 4 )
data |
A data matrix for clustering. |
dimReduction |
Dimenionality reduction method. |
outDim |
Number of dimensions used for clustering. |
dc |
Distance cutoff value. |
gaussian |
If |
alpha |
Significance level for peak detection. |
detectHalos |
If |
SVMhalos |
If |
parallel |
If |
nCore |
Number of cores umployed for parallel compution. |
ClusterX works on low dimensional data analysis (Dimensionality less than 5). If input data is high dimensional, t-SNE is conducted to reduce the dimensionality.
A list
Chen Hao
iris_unique <- unique(iris) # Remove duplicates data <- as.matrix(iris_unique[,1:4]) ClusterXRes <- ClusterX(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.