BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Lijuu
Obsidian | Level 7

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!                                 

1 ACCEPTED SOLUTION

Accepted Solutions
SuryaKiran
Meteorite | Level 14

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

 

Thanks,
Suryakiran

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

The following works for me. All missing values come in as missing.

 

Art, CEO, AnalystFinder.com

SuryaKiran
Meteorite | Level 14

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

 

Thanks,
Suryakiran
Lijuu
Obsidian | Level 7
Thank you in advance!

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

Register now!

What is Bayesian Analysis?

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 5695 views
  • 0 likes
  • 3 in conversation