How to import excel file with missing value into sas.
The format for the missing value is looks like:
Id X Y Z
1 . 5 .
2 . 3 .
3 . 1 .
4 a 2 3
5 b 7 4
Thank you!
Missing characters in SAS are represented by blanks and missing numeric values are represented by a period ( . ) In the data you showed you have period as missing character. Make sure to change those values into blank after reading data into SAS using Proc Import because period for character is not treated as missing.
Convert characters into missing as follows:
data want ;
set test;
array change_Char _Character_;
do over change_Char ;
if strip(change_Char)="." then change_Char=" ";
end;
run;
Also some numeric variables can be imported as character, using INPUT() you can convert them to numeric
The following works for me. All missing values come in as missing.
Art, CEO, AnalystFinder.com
Missing characters in SAS are represented by blanks and missing numeric values are represented by a period ( . ) In the data you showed you have period as missing character. Make sure to change those values into blank after reading data into SAS using Proc Import because period for character is not treated as missing.
Convert characters into missing as follows:
data want ;
set test;
array change_Char _Character_;
do over change_Char ;
if strip(change_Char)="." then change_Char=" ";
end;
run;
Also some numeric variables can be imported as character, using INPUT() you can convert them to numeric
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.