Hi everyone,
I am new to SAS and SQL. I have a dataset with ID, class and the related values. It's like,
ID CLASS VALUE
1 A 5
1 B 7
1 C 10
2 A 7
2 B 5
2 C 12
Can anyone help to use SQL to create 3 variables A, B , C to store different class values for each ID
The expected output table looks like
ID A B C
1 5 7 10
2 7 5 12
Like this?
data have;
input ID CLASS $ VALUE;
datalines;
1 A 5
1 B 7
1 C 10
2 A 7
2 B 5
2 C 12
;
run;
proc transpose data=have out=want (drop=_name_)
let;
by ID;
id Class;
var value;
run;
The data set is to have a concrete example and is the perferred way to show your data.
Proc Transpose is designed to do basic tranpostions from long to wide or wide to long data structures.
Note that ID used on the BY statement is your identification variable.
ID as used in ID Class; is the instruction that says "use the value of the variable class to create the identification (name) of the values.
why not accomplish your req with a super simple proc transpose-
data have;
input ID CLASS $ VALUE;
datalines;
1 A 5
1 B 7
1 C 10
2 A 7
2 B 5
2 C 12
;
proc transpose data=have out=want(drop=_name_);
by id;
id class;
var value;
run;
Like this?
data have;
input ID CLASS $ VALUE;
datalines;
1 A 5
1 B 7
1 C 10
2 A 7
2 B 5
2 C 12
;
run;
proc transpose data=have out=want (drop=_name_)
let;
by ID;
id Class;
var value;
run;
The data set is to have a concrete example and is the perferred way to show your data.
Proc Transpose is designed to do basic tranpostions from long to wide or wide to long data structures.
Note that ID used on the BY statement is your identification variable.
ID as used in ID Class; is the instruction that says "use the value of the variable class to create the identification (name) of the values.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.