BookmarkSubscribeRSS Feed
greenhousemilk
Calcite | Level 5

Hello I have following data (column vector)

1

2

3

.

.

1060

1061

.

.

.

530000

I want to make it

500*1060 matrix.

Any help appreciated.

2 REPLIES 2
Linlin
Lapis Lazuli | Level 10

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;

PGStats
Opal | Level 21

Be careful what you wish for... Smiley Happy

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

PG

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1095 views
  • 0 likes
  • 3 in conversation