BookmarkSubscribeRSS Feed
StatsByTheBeach
Calcite | Level 5
I think I want to do a logistic regression model, but I'm not sure.

I have a dichotomous outcome with 10 independent variables, some are continuous, some are categorical.

Which procedure do I use to look at the relationship between the outcome variable and each one of the independent variables?

Which procedure do I use to look at the relationship between my outcome variable and the significant independent variables in model building?

How do I know which independent variables to test interactions for?

Thanks for any help you can offer!
2 REPLIES 2
plf515
Lapis Lazuli | Level 10
> I think I want to do a logistic regression model, but
> I'm not sure.
>
> I have a dichotomous outcome with 10 independent
> variables, some are continuous, some are
> categorical.
>

That would seem to indicate a logistic regression


> Which procedure do I use to look at the relationship
> between the outcome variable and each one of the
> independent variables?

PROC LOGISTIC is the easiest one to learn

PROC LOGISTIC DATA = MYDATA;
MODEL DEPVAR = IV1;
RUN;

and repeat for the others.

>
> Which procedure do I use to look at the relationship
> between my outcome variable and the significant
> independent variables in model building?
>

again PROC LOGISTIC but you don't want to do bivariate screening.

> How do I know which independent variables to test
> interactions for?
>

Theory



Peter
StatsByTheBeach
Calcite | Level 5
Thank you!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1680 views
  • 0 likes
  • 2 in conversation