Sensitivity & Specificity in Python using Multivariate Logistic Regression

$$/$$

In the last segment, you learnt the importance of having evaluation metrics other than accuracy. Thus, you were introduced to two new metrics - sensitivity and specificity. You learnt the theory of sensitivity and specificity and how to calculate them using a confusion matrix. Now, let's learn how to calculate these metrics in Python as well.

Video Player is loading.
Current Time 0:00
Duration 0:00
Loaded: 0%
Stream Type LIVE
Remaining Time 0:00
 
1x
  • Chapters
  • descriptions off, selected
  • subtitles off, selected
      $$/$$

      As you saw in the code, you can access the different elements in the matrix using the following indexing - 

       

      TP = confusion[1,1] # true positive 
      TN = confusion[0,0] # true negatives
      FP = confusion[0,1] # false positives
      FN = confusion[1,0] # false negatives
      

       

      And now, let's rewrite the formulas of sensitivity and specificity using the labels of the confusion matrix.