In PROC HPLOGISTIC, which option generates a score dataset with predicted probabilities for each new observation?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — a is correct because PROC HPLOGISTIC supports a SCORE statement with DATA= to specify new data and OUT= to specify the output dataset containing predicted probabilities and class assignments. B (OUTPUT statement) writes training data predictions to an output dataset but does not score new data.
Full explanation below image
Full Explanation
A is correct because PROC HPLOGISTIC supports a SCORE statement with DATA= to specify new data and OUT= to specify the output dataset containing predicted probabilities and class assignments. B (OUTPUT statement) writes training data predictions to an output dataset but does not score new data. C is wrong because PROC HPLOGISTIC does support scoring via the SCORE statement. D uses PREDICT syntax that is not valid in PROC HPLOGISTIC.