I'm currently working on an important project where we use logistic regression to predict events.
The thing is, I need to generate 2 distinct sample of 1500 peoples then process a logistic regression. This whole process should be looped 50 times minimum. Do you know a way to loop it 50 times?
I tried with a macro:
%macro repeat
%do i = 1 %to 50;
[...]
output;
end;
run;
%mend;
%repeat(50);
But it won't work. Do you have any idea?