BookmarkSubscribeRSS Feed
Lulus
Obsidian | Level 7


Nothing statistics here.

I have a table which is a similaroty matrix, and it looks like this,

abc
a10.80.7
b0.810.2
c0.70.21

I was hoping to do the following,

and let tables become either

Header 1aabbcc
a1a0.8b0.7c
b0.8a1b0.2c
c0.7a0.2b1c

or the transpose of it, doesn't matter.

Header 1ab
a10.8
aaa
b0.81
bbb

As long as I have the original table by row or by column,

seperated by one colume which is fullfilled by the "previous" column name or rowname.

Please let me know how to do this.  Thank you very much.

3 REPLIES 3
ballardw
Super User

Does the value for the text versions of a b and c ever change?

Lulus
Obsidian | Level 7

no, they shouldn't be changed at all. thanks.

ballardw
Super User

If the data in the start table you presented is in a dataset foes this do what you need?

data want;

     set have;

     a_str = 'a';

     b_str = 'b';

     c_str = 'c';

     label a_str = 'a'

             b_str = 'b'

             c_str = 'c'

    ;

run;

proc print data= want noobs label;

     var a a_str b b_str c c_str;

run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 579 views
  • 1 like
  • 2 in conversation