plotConfMatrix {KnowSeq} | R Documentation |
The function plots a confusion matrix with some statistics. The function is used internally by dataPlot
but it can be used separatelly.
plotConfMatrix(data)
data |
A table which contains a confusion matrix. |
Nothing to return.
data <- table(as.factor(c(1,2,4,2,4,5)),as.factor(c(1,2,5,4,5,2))) plotConfMatrix(data)