BookmarkSubscribeRSS Feed
dustychair
Pyrite | Level 9

Hi all,

I have a data set including student's responses and missing values. I use the code below to score those responses. However, this code changes missing values to zeros as well. I want to change only responses and leave missing values as they are. Could you help me to edit this code. 

 

Thank you

 

data d912_binary (keep=id item: );
set d912;
if _n_ = 1 then set key;
array it {*} it1-it108;
array k {*} k1-k108;
array item {*} item1-item108;
do i = 1 to 108;
item{i} = (k{i} = it{i});
end;
run;

 

1 REPLY 1
dustychair
Pyrite | Level 9

I think I succeed. Here is what I did.

 

data d912_binary (keep=id item:);
set d912;
if _n_ = 1 then set key;
array it {*} it1-it108;
array k {*} k1-k108;
array item {*} item1-item108;
do i = 1 to 108;
if it{i} ne '.' then item{i} =(k{i} = it{i}) ; else item{i}=it{i};
end;
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
  • 1 reply
  • 309 views
  • 0 likes
  • 1 in conversation