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
7 months, 1 week agoMandar77
1 year, 9 months agonbav
2 years, 4 months agoKleinstone
3 years, 2 months ago