Date: Wed, 17 Dec 2008 22:51:58 -0800
Reply-To: jasonm@UCLA.EDU
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: J M <jasonm@UCLA.EDU>
Subject: GENMOD exponentiated linear prediction values
Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed"
I'm trying to create injury rates adjusted by age and experience
(where age and experience are categorical variables and injury is a
count variable). So far, I have this code:
proc genmod data=adjinj;
class agef expf;
model injury=year agef expf
/dist=poisson offset=lnhours;
output out=sumgen p=pred1;
run;
How do I get the exponentiated linear prediction values where the
predictions are computed for each level of year?
Is it also possible to get lower and upper bounds?
|