j***@gmail.com
2009-05-24 00:47:30 UTC
I'm trying to predict a binary outcome (participation in interracial
relationships) using clustered data, so it seemed like proc glimmix
would be the way to go. However, it lacks the 'covtest' option, so I
was told that using the 'asycov' option to get the asymptotic
covariance matrix for the covariance parameter estimates, and that I
could use that to construct confidence intervals and confidence levels
for the covariance parameter estimates. Can someone point me to a way
to do that, or explain how? Thanks in advance for the help. SAS code
follows:
proc glimmix data=WORK.sfnomiss abspconv = 0.0000001 asycov;
class region;
model irw1 (event='1') = female immigrant education /s dist=binomial
link=logit;
random intercept /subject=region;
random _residual_;
weight gswgt3;
J
relationships) using clustered data, so it seemed like proc glimmix
would be the way to go. However, it lacks the 'covtest' option, so I
was told that using the 'asycov' option to get the asymptotic
covariance matrix for the covariance parameter estimates, and that I
could use that to construct confidence intervals and confidence levels
for the covariance parameter estimates. Can someone point me to a way
to do that, or explain how? Thanks in advance for the help. SAS code
follows:
proc glimmix data=WORK.sfnomiss abspconv = 0.0000001 asycov;
class region;
model irw1 (event='1') = female immigrant education /s dist=binomial
link=logit;
random intercept /subject=region;
random _residual_;
weight gswgt3;
J