SAS : Count Missing and Non missing Across Columns

This post explains how to count number of missing (blanks) and non missing (non blank) values across multiple columns. It's very easy to calculate it with SAS. It's one of the common data manipulation task that SAS programmers deal in a day to day task but it is mostly associated with finding number of rows or number of non-missing values across rows. There is a rule in SAS that we should remember - We use PROCs when we need to aggregate a COLUMN. Whereas, we use FUNCTIONs to aggregate a row.

Let's create a sample data for demonstration -

The program below creates a sample dataset which would be named as TEMP and it would be stored in WORK library.
data temp;
input x y z a b$;
cards;
1 23 24 50 AA
1 . 24 50 AC
1 13 . 50 AB
1 23 . 50 .
;
run;
The sample data looks like below -

Sample Data

Count Missing and Nonmissing NUMERIC Values

The SAS function N calculates the number of non-blank numeric values across multiple columns. To count the number of missing numeric values, you can use NMISS function.
data outdata;
set temp;
nvalues = N(of x--a);
nmiss = nmiss(of x--a);
proc print;
run;
Output
Note - The N(of x--a) is equivalent to N(x, y, z, a). In this case, we are not using the variable b in the above program.

Count total missing and nonmissing values

Suppose you need to calculate number of both character and numeric non-missing and missing values.

Since SAS has no inbuilt function to calculate the number of variables, we need to use PROC CONTENTS to calculate the number of variables. Later we are storing the number of variables information in a macro variable which is totvar.

CMISS Function

The function CMISS counts the number of missing values across columns. It considers missing values of both numeric and character variables.
proc contents data=temp out=cols noprint;
run;

data _null_;
set cols nobs=total;
call symputx('totvar', total);
run;

data outdata;
set temp;
totalvar=&totvar;
totmiss=cmiss(of x--b);
totnonmiss=totalvar- cmiss(of x--b);
proc print ;
run;
SAS : Output
Related Posts
Spread the Word!
Share
About Author:
Deepanshu Bhalla

Deepanshu founded ListenData with a simple objective - Make analytics easy to understand and follow. He has over 10 years of experience in data science. During his tenure, he worked with global clients in various domains like Banking, Insurance, Private Equity, Telecom and HR.

6 Responses to "SAS : Count Missing and Non missing Across Columns"
  1. In the above program, there are 4 observations, and NOBS is used to calculate the number of observations, so how can we calculate number of variables. I mean when we use "set cols nobs=total;" the value of total should be 4 and the value of &totvar should also be 4, but in output it is showing 5. How? I am confused.

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
  2. Hey, it is because out statement in proc contents will create a new dataset with the number of variables as number of observation.

    ReplyDelete
  3. Hi if I want to list out the names of variables missing by each row how can I do that?

    ReplyDelete
  4. How can we find number of Null values in all the columns and rows. Also, find the percentage of Null values in each
    column. Round off the percentages upto two decimal places

    ReplyDelete
  5. I want to export data in 2 different xls how I'm supposed to do that ? Data is 8lac plus due to which I'm not getting full output.

    Code I used:
    Proc SQL;
    Create table test as
    Select * from work
    Where month = sep21 ;
    Quit;

    Proc export data = test
    Outfike = "path"
    DBMS = xlsx replace;
    Run;

    ReplyDelete

Next → ← Prev
Looks like you are using an ad blocker!

To continue reading you need to turnoff adblocker and refresh the page. We rely on advertising to help fund our site. Please whitelist us if you enjoy our content.