I am working on a logistic regression model. The ratio of 1s to 0s in the train dataset is 7:2 (14,000 1s and 4,000 0s)
The model performance is:
Accuracy - 83%
True Positive rate - 84%
True Negative rate - 74%
Area under the curve (ROC plot) is 0.78
Couple of questions:
Do I have to treat the class imbalance in this case? I have read somewhere that the proportion of 0s to 1s does not matter, the number does. Is the number of rare events in this case (4,000) good enough?
Is AUC of 0.78 acceptable? I have added all possible variables and adding more variables to the model is not an option.