BookmarkSubscribeRSS Feed
pamelated
Calcite | Level 5

I'm currently running a surveylogistic regression with a binary by variable. I'd like to compare the coefficients beween the two models (ie when the by variable =1 versus when the by variable =0). Below is an example of the code:

 

proc surveylogistic data=data1;
by b;
model y (desc) = x1 x2 x3;
cluster x4;
run;

Where both b and y are binary 0/1 variables.

 

The output shows two separate regressions, one for when b=0 and one for when b=1. Again, I'd like to compare the coefficients across those two regressions, but can't seem to figure out how. I do not want to simply include interactions between b and all the x variables, as I'd like the regressions to be separate.

 

Does anyone know how to do this?

Thanks in advance!!!

1 REPLY 1
SteveDenham
Jade | Level 19

 

Why do the regressions separately if you wish to test for differences between the two instances?  That just doesn't make sense to me.  The interaction method should give you exactly what you need.

 

Steve Denham

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1212 views
  • 0 likes
  • 2 in conversation