- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-12-2024 12:37 PM
(966 views)
proc glimmix data=mydata;
class myclass mygroup myid;
model count_response = mycovariate myclass / dist=poisson link=log offset=log_time;
random intercept / subject=myid;
random intercept /
run;
We would like to view the estimates in the original scale by exponentiating them. One way is the following:
data exp_estimates;
set estimates;
exp_estimate = exp(parameter_estimate);
run;
But I was wondering if an statement can be added directly in proc glimmix.
6 REPLIES 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Estimates of what?
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
fixed effects estimates
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
The model coefficients are based upon the appropriate model form for a Poisson model. I don't know what it means to ask for these on "the original scale".
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
estimates are in log form from the poisson. For interpretation purposes, it is easier to interpret the estimates as counts and not log counts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@ANKH1 wrote:
estimates are in log form from the poisson. For interpretation purposes, it is easier to interpret the estimates as counts and not log counts.
Do you mean "predicted values"?
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Estimates from the results table called "Solutions for Fixed Effects"