🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 03-01-2019 01:51 PM
(3003 views)
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
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi All, any help will be greatly appreciated
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content