Kappa: Kappa Statistic

Description Usage Arguments Value Author(s) See Also Examples

Description

Kappa estimates the Kappa statistic for model accuracy.

Usage

1
Kappa(mat)

Arguments

mat

a confusion matrix of class 'confusion.matrix' from confusion.matrix

Value

Returns a single value represting the Kappa statistic.

Author(s)

Jeremy VanDerWal jjvanderwal@gmail.com

See Also

auc, omission, sensitivity, specificity, prop.correct, confusion.matrix, accuracy

Examples

1
2
3
4
5
6
7
8
9
#create some data
obs = c(sample(c(0,1),20,replace=TRUE),NA); obs = obs[order(obs)]
pred = runif(length(obs),0,1); pred = pred[order(pred)]

#calculate the confusion matrix
mat = confusion.matrix(obs,pred,threshold=0.5)

#calculate the Kappa statistic
Kappa(mat)

jjvanderwal/SDMTools documentation built on May 19, 2019, 11:40 a.m.