Hello I have following data (column vector)
1
2
3
.
.
1060
1061
.
.
.
530000
I want to make it
500*1060 matrix.
Any help appreciated.
data have;
do i=1 to 530000;
output;
end;
data want;
set have;
group=int((_n_-1)/1060);
proc transpose data=want(keep=col:);
var i;
by group;
run;
proc print;run;
Be careful what you wish for... ![]()
data have;
do i=1 to 500*1060;
output;
end;
run;
data want;
array x{500, 1060};
do k = 1 to 500;
do j = 1 to 1060;
set have;
x{k,j} = i;
end;
end;
drop i j k;
run;
PG
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 save with the early bird rate—just $795!
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.