The question will ask you to provide a missing statement. Given the following SAS program:
Which SAS statement will complete the program to correctly score the data set NEW_DATA?
The question will ask you to provide a missing statement. Given the following SAS program:
Which SAS statement will complete the program to correctly score the data set NEW_DATA?
In a SAS logistic regression procedure, the correct syntax to score a new dataset would use the SCORE statement specifying the data to be scored and the output dataset. The correct statement should be 'Score data=MYDIR.NEW_DATA out=scores;'. This matches option A. The other options either contain syntax errors or do not follow the correct format for the SCORE statement in SAS.
D is correct. https://documentation.sas.com/?cdcId=statcdc&cdcVersion=14.2&docsetId=statug&docsetTarget=statug_logistic_syntax31.htm&locale=en
A is incorrect. There's an extra data word in the first line. D is correct, but there are some obvious grammatical errors
Correct answer is A.