BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
AnalytX
Fluorite | Level 6

Hello,

I use McNemar test via PROC FREQ to analyse 2 x 2 contingency tables with matched pairs of subject. What statistical test should I use (and corresponding PROC) to analyze 2 x n contingency tables with matched pairs of subject.

Thanks in advance for you suggestions;

Regards,

1 ACCEPTED SOLUTION

Accepted Solutions
SteveDenham
Jade | Level 19

I may be a little unclear on this, but I would try using a generalized linear model that captured the pairing design.  Perhaps something like:

proc glimmix;

class group pair;

model nlevel = group / solution dist=multinomial;

random int / subject=pair;

run;

Without knowing exactly what the data look like, this is as close as I can come up with for paired multinomial data.

Steve Denham

View solution in original post

2 REPLIES 2
SteveDenham
Jade | Level 19

I may be a little unclear on this, but I would try using a generalized linear model that captured the pairing design.  Perhaps something like:

proc glimmix;

class group pair;

model nlevel = group / solution dist=multinomial;

random int / subject=pair;

run;

Without knowing exactly what the data look like, this is as close as I can come up with for paired multinomial data.

Steve Denham

AnalytX
Fluorite | Level 6

Dear Steve,

Thanks a lot for your answer which sounds very good.

I have performed some tests and I obtained the results I waited for.

Have a good day.

Regards

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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