CE_simple-proc: CE_simple function for agreement between clustering...

Description Usage Arguments Value Examples

Description

Produce a measure of agreement between two partitions for clustering. A value of 1 means a perfect match.

Usage

1
CE_simple(v,vprime)

Arguments

v

numeric vector specifying the class of rows.

vprime

numeric vector specifying the class of rows.

Value

the value of the index.

Examples

1
2
3
4
5
6
require(bikm1)
set.seed(42)
v=floor(runif(4)*3)
vprime=floor(runif(4)*3)
error=CE_simple(v,vprime)
error

bikm1 documentation built on July 16, 2021, 9:08 a.m.