Description Usage Arguments Value Author(s) See Also Examples
Estimates different measures of accurracy given a confusion matrix.
1 2 3 4 5 6 7 | omission(mat)
sensitivity(mat)
specificity(mat)
prop.correct(mat)
|
mat |
a confusion matrix of class 'confusion.matrix'
from |
returns single values representing the:
ommission |
the ommission rate as a proportion of true occurrences misidentified given the defined threshold value |
sensitivity |
the sensitivity given the defined threshold value |
specificity |
the specificity given the defined threshold value |
prop.correct |
the proportion of the presence and absence records correctly identified given the defined threshold value |
Jeremy VanDerWal jjvanderwal@gmail.com
auc
, Kappa
,
confusion.matrix
, accuracy
1 2 3 4 5 6 7 8 9 10 11 12 | #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 accuracy measures
omission(mat)
sensitivity(mat)
specificity(mat)
prop.correct(mat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.