I have a prediction outcome that is dichotomous while all other predictor variables are binary and categorical.
How can I perform cross validation in SAS and see the ROC curve?
I need to create bayesian network.
Contents
hide
Best Answer
In the output statement in proc logistic you can request cross-validated predictions (I believe they are leave one out predictions). There is also an option to produce an ROC curve.
If you need to go further you're going to have to create training and test data sets in a data step, run the model, save predicted probabilities, then predict on the test set in another data step.
Similar Posts:
- Solved – ROC plot for continuous data in R
- Solved – How to get a ROC curve without a model
- Solved – Logistic regression with multiple outcome variables (all categorical)
- Solved – threshold choice for binary classifier: on training, validation or test set
- Solved – How to interpret marginal effects of dumthe variable in logit regression