I'm working with a dataset that has two control groups for reasons that I won't get into. I'm trying to do logistic regression on each of those separately - so, cases vs control group 1, then cases vs control group 2. What command do I use within my proc logistic to limit it to one group? Thanks!
How is your data structured?
Assuming you have a variable with three possible values then just use a WHERE clause to eliminate the observations from one of the control groups.
title 'cases vs control group 2';
proc logistics data=....
where group ne 'Control Group 1';
...
title 'cases vs control group 1';
proc logistics data=....
where group ne 'Control Group 2';
...
How is your data structured?
Assuming you have a variable with three possible values then just use a WHERE clause to eliminate the observations from one of the control groups.
title 'cases vs control group 2';
proc logistics data=....
where group ne 'Control Group 1';
...
title 'cases vs control group 1';
proc logistics data=....
where group ne 'Control Group 2';
...
Yes, that worked! I have a variable exactly as you described, and that fixed it. Thank you very much!! 🙂
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!
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.