Description Usage Arguments Examples
View source: R/cluster_param_selection.R
Runs agglomerative hierarchical clustering with differing numbers of partitions and returns validation metrics.
1 2 3 4 5 6 7 8 |
dataset |
A transcriptomics dataset. Preferably filtered first. First columns should be gene names. All other columns should be expression levels. Not needed if an argument to distance is given. |
distance |
A distance matrix. If a distance matrix has already been
created (such as by using the |
k |
A numeric vector giving the number of clusters to be evaluated. |
scale |
Logical. If TRUE then each gene will be scaled |
metric |
The distance metric to be used to calculate the distances between genes. See parallelDist::parDist for all accepted arguments. Also allows the option of 'abs.correlation'. Not used if a distance matrix is provided. |
nthreads |
The number of threads to be used for parallel computations. If NULL then the maximum number of threads available will be used. |
1 2 3 | k.options <- seq(2,10)
hclust.validation <- AgglomParamSelection(Laurasmappings, k=k.options,
nthreads = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.