Answers for "how to make 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

Browse Popular Code Answers by Language