BookmarkSubscribeRSS Feed
mkeintz
PROC Star

I wrote my program to accommodate any sequence of links within an ID group.  Although the example had each link descend from the prior record, the OP didn't state that as a condition.  But if that condition can be guaranteed to always be the case then the program is much simpler.   Just copy the sequence of FROM values and append the final TO value for each ID.  Then transpose:

 

data have;
  input id  from :$1. to :$1.;
datalines;
1 a b 
1 b c 
1 c d 
2 e f 
2 f g 
run;

data vneed / view=vneed;
  set have;
  by id;
  seq+1;
  if first.id then seq=1;
  if first.id then nodename='Source';
  else nodename=cats('Node_',seq);
  output;
  if last.id ;
  from=to;
  nodename='Sink';
  output;
run;

proc transpose data=vneed out=want (drop=_name_);
  by id;
  var from;
  id nodename;
run;
--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------
Ksharp
Super User
No. It can be settled randomly.
Or have a dead loop like:


ID	from	to
1	a	b
1	b	c
1	c	d
1      d      a


hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 16 replies
  • 3552 views
  • 4 likes
  • 4 in conversation