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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1434 views
  • 0 likes
  • 1 in conversation