BookmarkSubscribeRSS Feed
ryankey
Calcite | Level 5

HI, I got a matrix. Each column has its own name. How to get the names of the columns and save them into a vector?

for example, how to get the column names in the following matrix?

proc iml;
n = {1 2 3, 4 5 6};      /* 2 x 3 numeric */
c = {'a' 'b', 'c' 'd'};  /* 2 x 2 character */

nNames = "n1":"n3";
cNames = "c1":"c2";
create ndat from n[colname=nNames];
append from n;
create cdat from c[colname=cNames];
append from c;

quit;

Many thanks!

Sincerely,

Ryan

1 REPLY 1
ryankey
Calcite | Level 5

Got it. Use CONTENTS function.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 1 reply
  • 1579 views
  • 0 likes
  • 1 in conversation