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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 1537 views
  • 0 likes
  • 2 in conversation