Description Usage Arguments Examples
View source: R/cluster_functions.R
Finds The distances between the center of each cluster and the centers of all the other clusters.
1 2 3 4 5 | FindClusterDistanceQuantiles(
cluster.dataset,
metric = "euclidean",
nthreads = NULL
)
|
cluster.dataset |
A transcriptomics dataset where the final column details the cluster the gene belongs to. First column should be gene names. All remaining columns should be expression levels. |
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'. |
nthreads |
Number of processor threads for the process. If not specifed then the maximum number of logical cores are used. |
1 2 | pam.df <- PamClustering(Laurasmappings, k = 10, nthreads = 2)
FindClusterDistanceQuantiles(pam.df, nthreads = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.