I have an xlsx file that I wish to delete the NA values in SAS. I'm new to SAS, how do I do this?

Asked
Active
Viewed 665 times
1 Answers
1
For numeric data(observations) in order to drop you can use
missinganddelete:
data olddata;
set cleandata;
if missing(coalesce(of _numeric_)) then delete;run;
Note: untested code
n1tk
- 639
- 3
- 11