Hello
I have a code that do not understand and was wondering if someone can help me with. I am attaching the data before and after as an EXCEL file.
Thank you
R.
Code:
data new;
set old;
do combinations=1 to 32;
output;
end;
run;
Hi ,
"do combinations=1 to 32;" added a variable "combinarions" to dataset old and increased the obsevations to 32*(number of obs. in dataset old).
example:
data old;
input
a b;
cards;
1 2
2 1
;
data
new;
set
old;
do combinations=1 to 32;
output;
end;
run;
proc sort data=new;
by combinations;
run;
Hi ,
"do combinations=1 to 32;" added a variable "combinarions" to dataset old and increased the obsevations to 32*(number of obs. in dataset old).
example:
data old;
input
a b;
cards;
1 2
2 1
;
data
new;
set
old;
do combinations=1 to 32;
output;
end;
run;
proc sort data=new;
by combinations;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.