How to compute sensitivity in R

We can easily compute this from our confusion matrix:

casted_confusion_matrix %>% 
mutate(sensitivity = true_positive/(true_positive + false_negative))
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset