SAS_Institute
A00-240 · Question #17
A00-240 Question #17: Real Exam Question with Answer & Explanation
Sign in or unlock A00-240 to reveal the answer and full explanation for question #17. The question stem and answer options stay visible for context.
Question
This question will ask you to provide missing code segments.
A logistic regression model was fit on a data set where 40% of the outcomes were events (TARGET=1) and 60% were non-events (TARGET=0). The analyst knows that the population where the model will be deployed has 5% events and 95% non-events. The analyst also knows that the company's profit margin for correctly targeted events is nine times higher than the company's loss for incorrectly targeted non-event.
Given the following SAS program:
proc logistic data = LOANS_descending;
model Purch = Inc Edu;
score data = LOANS_V$ out = LOANS_VS priorevent = (insert X here);
run;
data LOANS_VS;
set LOANS_VS;
Solicit = P_1 > (insert Y here);
run;
What X and Y values should be added to the program to correctly score the data?
Options
- AX=40, Y=10
- BX=.05, Y=10
- CX=.05, Y=.40
- DX=.10.Y=.05
Unlock A00-240 to see the answer
You've previewed enough free A00-240 questions. Unlock A00-240 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.