BookmarkSubscribeRSS Feed
JackZ295
Pyrite | Level 9

Is there a way to exclude the frequency of missing values in a proc freq procedure? For example if you run a proc freq procedure with or without the /missing option: 

 

proc freq data=one;

tables variables; 

run; 

 

proc freq data=one; 

tables variables/missing;

run; 

 

I believe you still get the frequency of missing values, though the latter option counts the missing values in the percentage, correct? However, is there a way to exclude the missing values in the frequency table all together?

2 REPLIES 2
Ksharp
Super User
proc freq data=one(where=(variables is not missing)); tables variables; run;
Ksharp
Super User
proc freq data=one(where=(variables is not missing)); tables variables; run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 8115 views
  • 1 like
  • 2 in conversation