Description Usage Arguments Value Author(s) Examples
View source: R/CORE_clustering.R
Comparing clustering results Function for calculating randindex (adapted from the function by Steve Horvath and Luohua Jiang, UCLA, 2003)
1 | rand_index(tab, adjust = TRUE)
|
tab |
a table containing different clustering results in rows |
adjust |
a logical of whether to use the adjusted rand index |
a rand_index value
Quan Nguyen and Michael Thompson, 2018-05-11
1 2 3 4 5 6 7 | day5 <- day_5_cardio_cell_sample
mixedpop2 <-new_summarized_scGPS_object(ExpressionMatrix = day5$dat5_counts,
GeneMetadata = day5$dat5geneInfo, CellMetadata = day5$dat5_clusters)
cluster_all <-clustering(object=mixedpop2)
rand_index(table(unlist(cluster_all$list_clusters[[1]]),
cluster_all$cluster_ref))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.