I am looking for a way to pool the likelihood ratio test (test3 statistics for some categorical covariates).
My estimates and statistics for the imputed datasets are:
proc glimmix data=Edeathm2;
class study issstg mmtg;
model pdgrp1 = raceg hbcatg eort mmtg mprtg issstg fraig
cyto2rg diabflag pltg ldhg novel/s oddsratio covb;
random intercept / subject=study;
by _Imputation_;
ods select ParameterEstimates CovB FitStatistics;
ods output ParameterEstimates=lgparms CovB=lgcovb ;
ods output tests3=lrtest;
run;
How can I generate the pooled likelihood ratio tests for my covariates with proc mianalyze?
Thanks.
It is suggested that you combine the actual Chi-Square statistics. Paul Allison has a macro on his website
http://www.ssc.upenn.edu/~allison/combchi.sas
It is suggested that you combine the actual Chi-Square statistics. Paul Allison has a macro on his website
http://www.ssc.upenn.edu/~allison/combchi.sas
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.