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; 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 478 views
  • 0 likes
  • 1 in conversation