F1 Score in R
F1 Score
F1 score is the harmonic mean of precision and recall and provides a balanced evaluation metric.
r
2 * (precision * recall) / (precision + recall)
Next Tutorial: ROC Curve

