View source: R/plotConfMatrix.R
plotConfMatrix | 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.