BookmarkSubscribeRSS Feed
BTAinRVA
Quartz | Level 8

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.

 

Thanks,

 

Brian

1 REPLY 1
BTAinRVA
Quartz | Level 8

I adapted the code from here

 

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 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 1315 views
  • 0 likes
  • 1 in conversation