problem in installing confusionMatrix in R version 3.5.3

...package ‘confusionMatrix’ is not available (for R version 3.5.3)
how can i install the package into this version
please help

I believe there is no package called confusionMatrix maybe you are referring to the confusionMatrix() function from the caret package (or it could be some other package) in which case you have to install and load that package, not the function.

install.packages("caret")
library(caret)
confusionMatrix(data, ...)

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.