BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
cc15
Fluorite | Level 6

I have a very large dataset and I am trying to replace several numeric and character variable values (trying to null all of the values with certain variables)  with either a blank or null (.). I tried the following code but got several error messages. Is this the best code or are there others?

 

proc iml;
edit mp_;
read all var (Result1) where (Result1 ^= '0');
Result1 = ' ';
replace all var (Result1) where (Result1 ^= '0');
run;

 

4 proc iml;
NOTE: Writing HTML Body file: sashtml.htm
NOTE: IML Ready
5 edit mp_;
6 read all var (Result1) where (Result1 ^= 0);
ERROR: Operand Result1 does not have a value.

statement : READ at line 6 column 1
7 Result1 = ' ';
8 replace all var (Result1) where (Result1 ^= 0);

ERROR: An exception has been encountered.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
cc15
Fluorite | Level 6

This version worked, thanks for the guidance

 

data mp_test;
set mp_;
call missing (Result1);
run;

View solution in original post

6 REPLIES 6
Mazi
Pyrite | Level 9

Hi, in the data step you can use the call missing call routine.
e.g.

data test;
	set sashelp.class;
	if _n_ in (1 3 5 7 9) then call missing (of _all_); /*clear all variables*/
	else if _n_ in (2 4 6 8) then call missing (of name--height); /*clear variables between name and height, inclusive*/
	else call missing(of height weight); /*clear only height and weight*/
run;

Hope it helps

 

cc15
Fluorite | Level 6

I tried the following code recommended, but the variables were not nulled

 

data mp_test;
set mp_;
if Result1 in ("Positive" "Unknown") then call missing (of _all_);
run;

 

Mazi
Pyrite | Level 9
I’m curious to understand why this did not work for you.

Are you sure the values passed to the in operator are correct ? That is, that they the correctly cased since strings are case-sensitive, and spelled correctly, exactly as they appear in your data ?
cc15
Fluorite | Level 6

I think that code was too specific, I was looking to null all of the values. 

Tom
Super User Tom
Super User

@cc15 wrote:

I think that code was too specific, I was looking to null all of the values. 


The CALL MISSING(of _ALL_) is going to set ALL of the VARIABLES to missing but only on the observations where it runs.

To set the variable to missing on every observation then do not use the IF/THEN.

 

Or simpler still just DROP the variable, since a variable that is missing on every observation is not adding much information to the dataset and just just taking up space.

 

cc15
Fluorite | Level 6

This version worked, thanks for the guidance

 

data mp_test;
set mp_;
call missing (Result1);
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 6 replies
  • 758 views
  • 1 like
  • 3 in conversation