I have created a few predictive models and I am in the process of evaluating them by looking at the ROC Curve and AUC.
Currently, I have Specificity on X axis, however, when I researched ROC Curves, I saw 1 - Specificity on the X axis.
What is the difference and which should I use to validate my predictive models? If Specificity is on the X-Axis, do I still want to maximize the AUC (from experience the answer is yes but I want to confirm)?
Here is how I am plotting it:
> library(pROC)
> g <- roc(Setup ~ Probs, data = Data)
> plot(g)
> auc(g)
> ci.auc(g)