- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-20-2019 02:50 PM
(1542 views)
Hi all;
How I can get the mean probability of DEPENDING VARIABLE each year according to the random effect by using Multivariate logistic regression?
This is my code of multivariate logistic regression by using random effect.
I hope I had explained my question clearly and fully.
Regards
proc GLIMMIX data=herd;
class testyear (ref='2004') time (ref='11');
model mpd = testyear time /dist=binary link=logit oddsratio solution;
random herd(time);
run;
Ibrahim
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I think the LSMEANS statement does what you want.
lsmeans testyear;
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
not yet,
thanks for your response
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I stick with my earlier comment.
--
Paige Miller
Paige Miller