classEntropy: classEntropy

View source: R/external_cluster_validity.R

classEntropyR Documentation

classEntropy

Description

Computes the entropy of a set of classes, as defined in https://aclweb.org/anthology/D/D07/D07-1043.pdf

Usage

classEntropy(contingency, c, k)

Arguments

contingency

Table, contingency table between clusters and conditions as returned by the table function

c

Vector of classes

k

Vector of clusters

Value

Numeric

Examples


clusters <- c(0, 0, 2, 1, 1, 0, 1)
classes <- c("A", "A", "A", "B", "B", "A", "B")
ct <- table(classes, clusters)
classEntropy(contingency = ct)


sjessa/chromswitch documentation built on Feb. 4, 2024, 2:04 a.m.