BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi,

I've got a dataset with variables var1 to var4.
And I want do normalize them.

I've tried this code:


data test;
set tst;

do i=1 to 4;
output_var1 = var+i;
output;
end;
run;


But it doesn't work...
Can anyone help me?
4 REPLIES 4
Olivier
Pyrite | Level 9
What do you exactly mean by "normalizing" ? Can we have a sample with data of what you have as an input, and what you want to create ?
deleted_user
Not applicable
Source:
var1 var2 var3
one 1 11
two 2 12
three 3 13

The output should be:
var1 var
one 1
one 11
two 2
two 12
three 3
three 13
Olivier
Pyrite | Level 9
DATA newlyCreated ;
SET existing ;
ARRAY values
var2 var3 /* here you can list all the variables that contain values */ ;
DO OVER values ;
var = values ;
OUTPUT ;
END ;
RUN ;
deleted_user
Not applicable
Oliver,

Thanks a lot!
That's exactly what I'm looking for!!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 4 replies
  • 658 views
  • 0 likes
  • 2 in conversation