BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mszommer
Obsidian | Level 7
Hello,

I wish to test the association between two categorical variables, one of which is Gender (1=female, 2=male, 3=diverse and 4=prefer not to answer).

Is it possible to drop levels 3 and 4 before running Chi Sq test of association (PROC FREQ)? If yes, how can it be done?

Regards,
MS
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
Add a WHERE statement to your PROC FREQ.

where gender not in (3, 4);

View solution in original post

1 REPLY 1
Reeza
Super User
Add a WHERE statement to your PROC FREQ.

where gender not in (3, 4);

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
  • 1 reply
  • 745 views
  • 0 likes
  • 2 in conversation