Question: The following SAS code is submitted: data WORK.TEMP WORK.ERRORS / .TEMP; infile RAWDATA; input Xa Xb Xc; if Xa=. then output WORK.ERRORS; else output WORK.TEMP;
The following SAS code is submitted:
data WORK.TEMP WORK.ERRORS / .TEMP;
infile RAWDATA;
input Xa Xb Xc;
if Xa=. then output WORK.ERRORS;
else output WORK.TEMP;
run;
Which of the following is true of
the WORK.ERRORS data set?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
