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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 1321 views
  • 0 likes
  • 1 in conversation