For plotting normal PDF curve, ROC curve and calculating AUC values
The file (code.py) contains code for calculating Normal distribution and its curve along wth ROC curve and respective AUC values.
This code requires the following modules:
For normal distribution (it will return PDF values)
ndis(<standered deviation>, <mean>)
Plotting and comaparing two normal distribution
drawPlot(<PDF(Malignant)>,<PDF(Benign)>, <name of comapny>)
For AUC
auc(<PDF(Malignant)>,<PDF(Benign)>, <name of comapny>)
For ROC curve
draw_roc(<TPR>,<FPR>, <name of comapny>)
Configruation:
- p1y = ndis(standered deviation, mean)
- p2y = ndis(standered deviation, mean)
Run as you would normally run a python 3 file.
- Akash Meshram - Initial work - Akash_Meshram