I have been able to do the model predict using result = logit.fit()
.
Now for testing and validation set shall we just do result.predict(test_df[features])
and result.predict(vald_df[features])
? Is that all? Or am I missing some step? How it would be different when I try to deploy the model for daily prediction ?
I am new to statsmodel, in fact started today and kind of short of time. I checked a few blogs, information are disjointed, so just wanted to be sure.
Also, is there a way we can directly extract 'Area under ROC'
from statsmodel rather than coding our way through?