rand_index: Calculate rand index

Description Usage Arguments Value Author(s) Examples

View source: R/CORE_clustering.R

Description

Comparing clustering results Function for calculating randindex (adapted from the function by Steve Horvath and Luohua Jiang, UCLA, 2003)

Usage

1
rand_index(tab, adjust = TRUE)

Arguments

tab

a table containing different clustering results in rows

adjust

a logical of whether to use the adjusted rand index

Value

a rand_index value

Author(s)

Quan Nguyen and Michael Thompson, 2018-05-11

Examples

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))

scGPS documentation built on Nov. 8, 2020, 5:22 p.m.