I proc transposed this:
proc sort data=ngr2 out=ngr1;
by no;
run;
proc transpose data=Ngr1 out=ngr;
by no;
id nigeria;
var _2011 _2012 _2013 _2014 _2015 _2016;
run;
and got this:
but I want something like this
Thanks in advance
You don't need a BY statement, in fact a 'basic' proc transpose should get you much closer:
proc transpose data=have out=want;
run;
Add back portions of code until you get what you need with the minimal amount of code. You should end up with something similar to this:
proc transpose data=have out=want;
id var_name;
var _2011 _2012 _2013 _2014 _2015 _2016;
run;
You don't need a BY statement, in fact a 'basic' proc transpose should get you much closer:
proc transpose data=have out=want;
run;
Add back portions of code until you get what you need with the minimal amount of code. You should end up with something similar to this:
proc transpose data=have out=want;
id var_name;
var _2011 _2012 _2013 _2014 _2015 _2016;
run;
I assume that variable no is only there to set a column order in your transposed table. That's fine. But it shouldn't be involved in the transposition. Simply do:
proc transpose data=Ngr1 out=ngr name=Year;
id Nigeria;
var _2011 - _2016;
run;
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!
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.