Precision and Recall in R in Data Science with R Programming
Precision and Recall
Precision measures the percentage of correct positive predictions, while recall measures how many actual positives were correctly identified.
- Precision = TP / (TP + FP)
- Recall = TP / (TP + FN)
Next Tutorial: F1 Score

