EMCluster (version 0.2-10)

Jaccard Index: Jaccard Index

Description

This function returns the Jaccard index for binary ids.

Usage

Jaccard.Index(x, y)

Arguments

x

true binary ids, 0 or 1.

y

predicted binary ids, 0 or 1.

Value

Return the value of Jaccard index.

Details

All ids, x and y, should be either 0 (not active) or 1 (active). Any value other than 1 will be converted to 0.

References

http://maitra.public.iastate.edu/

Examples

Run this code
# NOT RUN {
<!-- %\dontrun{ -->
# }
# NOT RUN {
library(EMCluster, quietly = TRUE)

x.id <- c(1, 1, 1, 0, 0, 0, 3, 3, 3)
y.id <- c(0, 1, 0, 1, 1, 1, 0, 1, 1)

Jaccard.Index(x.id, y.id)
# }
# NOT RUN {
<!-- %} -->
# }

Run the code above in your browser using DataLab