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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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