Let's say I have 10 variables, all with the same prefix (they start with com
).
Let's say the variables are binary, and there is some missing data, and I'd like to set all that missing data to 0. I'd like to generate a new variable for each original variable so the original data is intact.
How would I go about recoding all of these variables at once? Is there an easy way to run a loop in SAS? If this were Python or R I could write a loop to do it all using grep
or something similar.
EDIT: Here's what I'm trying to do. I want to use an unindexed array with the com
variables to create copies of them called new_com
(prefix each variable with new
). Then I just want to recode, which I know I can do using if
then
statements. The first part, about cloning the variables, is where I am stuck.
Assuming you have SAS/STAT licensed, this is most simply done using
PROC STDIZE
:reponly
says to not do any standardization (only impute zero for missing),sprefix
andoprefix
specify what to prefix standardized and original variables with.