UC-MACSS / persp-model-econ_W19

Course site for MACS 30150 (Winter 2019) - Perspectives on Computational Modeling for Economics
16 stars 50 forks source link

Typo in Confusion Matrix #14

Closed liu431 closed 5 years ago

liu431 commented 5 years ago

In the notebook LogitKNN, we have the following for confusion matrix: [[180, 32], [ 48, 96]]), where 180 is True Positives, 32 is False Positives, 48 is False Negatives, and 96 is True Negatives.

So the matrix is telling us that 180 and 96 are the numbers of correct predictions. The model predicts 32 passengers who actually died as survived and 48 passengers who actually survived as died.

rickecon commented 5 years ago

Thank you @liu431 . I was confused.