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