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
1 year, 3 months agoMandar77
2 years, 5 months agonbav
3 years agoKleinstone
3 years, 10 months ago