Given the SAS data set SASDATA TWO:
SASDATA TWO -
X Y -
-- --
5 2
3 1
5 6
The following SAS program is submitted:
data sasuser.one two sasdata.three;
set sasdata two;
if x = 5 then output sasuser.one;
else output sasdata two;
run;
What is the result?
Misty2287
11 months agoMandar77
2 years agonbav
2 years, 8 months agoKleinstone
3 years, 6 months ago