Answers for "how to plot confusion matrix in r"

1

how to make confusion matrix in r

library(caret)
confusionMatrix(data = your_prediction, 
                        reference = data$y)
Posted by: Guest on April-26-2020

Code answers related to "how to plot confusion matrix in r"

Python Answers by Framework

Browse Popular Code Answers by Language