BookmarkSubscribeRSS Feed
Roberta324
Calcite | Level 5

How do I do Fisher's Exact test in SAS?

3 REPLIES 3
stat_sas
Ammonite | Level 13

Try proc freq

proc freq data = have;

  tables variable1*variable2 / fisher;

run;

Roberta324
Calcite | Level 5

I got the answer.  It's in proc freq, using /fisher on the tables statement.Smiley Happy

Ksharp
Super User

OR

proc freq data = have;

  tables variable1*variable2 ;

  exact fisher;

run;

Xia Keshan

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3 replies
  • 2087 views
  • 0 likes
  • 3 in conversation