Statistical Procedures

Programming the statistical procedures from SAS
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Chung-Li
Quartz | Level 8

Hi all, 

 

When researchers want to conduct the relationship between a binary dependent variable and independent variables, one way they can do is as follows:

PROC LOGISTIC DATA = MyDtSt;
    MODEL Y(event='1') = Main X, confounders;
RUN;

This one is easy!

It simply use main x to construct a model for Y, also with the adjustment of confounders.

However, my question is that what if I want to use spline(X) to model Y, and at the same time I want to control for linear confounding effects?

Is there any way allows me to model binary Y with spline function of X, and also enables me to take into account confounding effects?

 

Hope you guys can provide me with some suggestions.

Thanks in advance! 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

You can use the EFFECT statement in PROC LOGISTIC to define a spline effect.

Simple example with lots of links to papers and doc: "Nonsmooth models and spline effects"

 

The EFFECT statement supports several kinds of splines, so read the doc for how to specify the basis functions. For an example that uses restricted cubic splines, see "Regression with restricted cubic splines in SAS". The article demonstrates linear regression,  but you can use the same ideas and syntax in PROC LOGISTIC.

 

View solution in original post

6 REPLIES 6
Chung-Li
Quartz | Level 8

Ksharp,

 

Thank you for doing this!

PaigeMiller
Diamond | Level 26

The EFFECT statement in PROC LOGISTIC (and many other PROCs) allows you to use a spline fit through X in the model. This example, which uses PROC GLIMMIX, ought to function the same in PROC LOGISTIC: http://documentation.sas.com/?cdcId=statcdc&cdcVersion=14.2&docsetId=statug&docsetTarget=statug_intr...

--
Paige Miller
Chung-Li
Quartz | Level 8

Paige Miller,

 

Thank you for this information!

I'll definitely check "effect" statement. 

Rick_SAS
SAS Super FREQ

You can use the EFFECT statement in PROC LOGISTIC to define a spline effect.

Simple example with lots of links to papers and doc: "Nonsmooth models and spline effects"

 

The EFFECT statement supports several kinds of splines, so read the doc for how to specify the basis functions. For an example that uses restricted cubic splines, see "Regression with restricted cubic splines in SAS". The article demonstrates linear regression,  but you can use the same ideas and syntax in PROC LOGISTIC.

 

Chung-Li
Quartz | Level 8

Rick, 

 

This is exactly what I'm looking for!

With this information, I think I can achieve what I want.

Thank you!

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 6 replies
  • 9273 views
  • 3 likes
  • 4 in conversation