BookmarkSubscribeRSS Feed
KPCklebspn
Obsidian | Level 7

Hi there - I have a dataset of individuals, where each individual is a close contact of an index case. So, individuals are clustered at the level of the index case. The outcome (infection) is yes/no - acquired infection from the index case.

 

Sample of dataset

IndexCase   contact    ContactCharacteristic     IndexCaseCharacteristic   infection

1                    1                    a                                    a                                     yes

1                    2                    b                                    a                                     yes 

1                    3                    c                                    a                                     no

2                    1                    a                                    b                                     no

2                    2                    b                                    b                                     no

 

Question is: what are risk factors for contacts acquiring infection for the index case? Risk of infection for contacts depends on contact characteristics and index case characteristics (i.e. individual-level and cluster-level characteristics).

 

Is the coding for this model correct? i.e. is it ok to put the cluster-level characteristic of interest (indexcharacteristic) in the model?

 

proc genmod data = dataset;
class indexcase;
model infection = ContactCharacteristic IndexCharacteristic/ dist=binomial link=logit;
repeated subject=indexcase / type = exch;

run;


Thanks!

1 REPLY 1
StatDave
SAS Super FREQ

From your description, that seems like a reasonable model.

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 616 views
  • 0 likes
  • 2 in conversation