Tag: missing values

Unexpected results from missing values with PROC SQL

SAS SQL handles missing values differently than the ANSI standard for SQL. PROC SQL follows the SAS convention for handling missing values: numerical missing values are always interpreted as less or smaller than all nonmissing values. My first blog showed that missing values can be troublemakers in non-grouped descriptive statistics. […]

Unexpected results from missing values with PROC SQL was published on SAS Users.

How to filter variables by percentage of missing values or duplicate values in SAS

This article discusses how to use SAS to filter variables in a dataset based on the percentage of missing values or duplicate values. The missing value statistics can be implemented by either DATA step programming on your own or reusing the existing powerful PROC FREQ.

How to filter variables by percentage of missing values or duplicate values in SAS was published on SAS Users.