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

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