I'm analyzing emergency room utilization rates at several sites and want to do a multiple comparison test. I have the raw data (ER visits and Enrollees) and was wondering if someone could suggest a way to analyze them. I'm thinking it would be a GenMod or Glimmix solution.
data EDRate;
input v e Group$;
ln = log(e);
datalines;
23 155 Group1
29 276 Group2
54 550 Group3
;
proc genmod data=EDRate;
class Group;
model v = Group / dist=poisson link=log offset=ln;
lsmeans Group / ilink cl;
run;
where v are the number of ED visits and e are the number of enrollees. Does this look like an appropriate way to analyze the data? Any helpful hints would be greatly appreciated.
Thanks,
Brian
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Registration is open
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss. Register now and lock in 2025 pricing—just $495!
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.