Last active
October 16, 2020 03:12
-
-
Save shedoesdatascience/ec4d210963caa91e3e017347f5d7d6e5 to your computer and use it in GitHub Desktop.
confusion_matrix_covid-test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+------------------+---------------------+------------------+-------+ | |
| n=165 | Predicted: Negative |Predicted:Positive| Total | | |
+------------------+---------------------+------------------+-------+ | |
| Actual: Negative | TN = 50 | FP = 10 | 60 | | |
| Actual: Positive | FN = 5 | TP = 100 | 105 | | |
| Total | 55 | 110 | | | |
+------------------+---------------------+------------------+-------+ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment