BookmarkSubscribeRSS Feed
suebayran
Calcite | Level 5

I have an GLM and a treament variable given to the patient in a factorial fashion coded in the following manner

1-control

2-oral drug A

3-inhaler B

4-drug A and B togther

 

My outcome variable is the weekly number of puffs of albuterol taken for the patient's asthma.

 

I need to test whether the treatment effect, which is significant in my model, can be attributed entirely to the inhaler B. Can someone help me in how I might test this in SAS? Would it be some sort of contrast statement? Thanks all.

1 REPLY 1
SteveDenham
Jade | Level 19

Unfortunately, this experimental design isn't really a factorial, as each patient proceeds through the four treatments in the same order.

 

In that sense, this is a repeated measures design, with a response variable that is a count.  In order to get the comparisons you want, you'll likely want to use PROC GLIMMIX.

 

Try the following for a comparison of the marginal estimates:

proc glimmix data=yourdata;
class ID treatment;
model count = treatment / dist=poisson;
random treatment / residual type=un subject=ID;
lsmeans treatment / diff;
run;

This should at least get you started.  There may be some glitches along the way as far as convergence, etc., but those can be dealt with.

 

Steve Denham

 

 

 

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1000 views
  • 0 likes
  • 2 in conversation