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

Hello there! 

My instructions were to create a frequency table for race AND sexual orientation showing percent as well as frequency? What am I doing wrong? 

proc freq data=WORK.SYPHILIS;
	tables RACE AND sex_o;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

You use the * to indicate a "cross" in the tables statement

proc freq data=WORK.SYPHILIS;
	tables RACE * sex_o;
run;

You can use () to compare multiple variables with one or more other groups of variables.

proc freq data=WORK.SYPHILIS;
	tables (RACE othervar) * (sex_o  somevar);
run;

would create tables for race*sex_o, race*somevar, othervar*sex_o and othervar*somevar.

 

 

View solution in original post

2 REPLIES 2
ballardw
Super User

You use the * to indicate a "cross" in the tables statement

proc freq data=WORK.SYPHILIS;
	tables RACE * sex_o;
run;

You can use () to compare multiple variables with one or more other groups of variables.

proc freq data=WORK.SYPHILIS;
	tables (RACE othervar) * (sex_o  somevar);
run;

would create tables for race*sex_o, race*somevar, othervar*sex_o and othervar*somevar.

 

 

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

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 2243 views
  • 3 likes
  • 2 in conversation