BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
niam
Quartz | Level 8

Hi I have a binary outcome variable and a binary predictor. Observations are grouped at DRIVERID level. 

When I run the model with using DIST=BIN and LINK=LOGIT, the model does not converge, however, if I just run the model without these two options, the model runs and gives me results. 

Can you please let me know why the model fails to converge when I specify that the DV is binary?

The following model runs:

proc gee data=ANALYSIS2 descend;
   class  DRIVERID ;
   model effct=TREATMENT ;
   repeated  subject=DRIVERID  / CORR=IND;
run;

This one does not run:

proc gee data=ANALYSIS2 descend;
   class  DRIVERID ;
   model effect=TREATMENT /dist=bin link=logit;
   repeated  subject=DRIVERID  / CORR=IND;
run;

Here is the error message I get:

The generalized Hessian matrix is not positive definite. Iteration will be terminated.

1 ACCEPTED SOLUTION
2 REPLIES 2
niam
Quartz | Level 8
Hi All, any help will be greatly appreciated

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!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 2696 views
  • 0 likes
  • 1 in conversation