Hi ,
I'd like to run logistic regressions on a data set. However there are more than 100 covariates. I wonder whether macro would help to make the process more efficient.
I am using
proc logistic descending;
model a = b c1;
run;
(given there are 100 c1, all come with different variable names). I want to run each logistic regression one at a time. eg.
1st model a=b c1;
2nd model a=b f;
..
..
up to 100 but only the 2nd variable varies.
Is there a way to do it..
A big thank you for any experts who can help!
J
I'd like to run logistic regressions on a data set. However there are more than 100 covariates. I wonder whether macro would help to make the process more efficient.
I am using
proc logistic descending;
model a = b c1;
run;
(given there are 100 c1, all come with different variable names). I want to run each logistic regression one at a time. eg.
1st model a=b c1;
2nd model a=b f;
..
..
up to 100 but only the 2nd variable varies.
Is there a way to do it..
A big thank you for any experts who can help!
J