cm_evaluate | R Documentation |
Get model evaluation statistics from a confusion matrix. This is useful when predicting (multiple) classes.
cm_evaluate(cmat, stat="overall")
cmat |
confusion matrix. Normally created with table (see examples) |
stat |
character. Either "overall" (overall accuracy), "kappa", "class" for user and producer accuracy |
numeric
pa_evaluate
classes <- c("forest", "water", "urban", "agriculture")
set.seed(1)
observed <- sample(classes, 100, replace=TRUE)
predicted <- observed
i <- seq(1,100,2)
predicted[i] <- sample(classes, length(i), replace=TRUE)
conmat <- table(observed, predicted)
conmat
cm_evaluate(conmat, "kappa")
cm_evaluate(conmat, "class")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.