in src/smclarify/bias/metrics/basic_stats.py [0:0]
def recall(TP: int, FN: int) -> float:
r"""
Proportion of inputs with positive observed label correctly assigned the positive predicted label.
:param: TP Counts of labels which were correctly predicted positive
:param: FN Counts of labels which were incorrectly predicted negative
:return: Proportion of inputs with positive observed label correctly assigned the positive predicted label.
"""
return divide(TP, TP + FN)