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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 324 views
  • 0 likes
  • 1 in conversation