I/P:
print("*** Classification Metrics: Recall ***")
print()
TPV = float(input("Please enter the True Postive value: "))
FNV = float(input("Please enter the False Negative value: "))
print()
RV1 = TPV+FNV
RV2 = TPV/RV1
print()
print("The Recall Value is %2f"%RV2)
#*(Bad) 0 </ Recall </ 1 (Good)
O/P:
*** Classification Metrics: Recall *** Please enter the True Postive value: 2 Please enter the False Negative value: 8The Recall Value is 0.200000
===============================================================
https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg