BookmarkSubscribeRSS Feed
buckeyefisher
Obsidian | Level 7

I want to count diadic relationship between alliance partners per year. 

 

Data have;

 

No                 Principal Firm         Partner Firm              Year 

1                           a                           b                            1991

2                           b                           c                            1991

3                           a                           x                            1992

4                           a                           b                            1992

5                           x                           a                            1993

6                           x                           z                            1994

7                           c                           b                            1995

8                           b                           a                            1996

 

Data Want;

 

No                 Principal Firm         Partner Firm               Year                      Alliance History Count (Cumulative)

1                           a                           b                            1991                                 1

2                           b                           c                            1991                                 1

3                           a                           x                            1992                                 1

4                           a                           b                            1992                                 2

5                           x                           a                            1993                                 2 

6                           x                           z                            1994                                 1  

7                           c                           b                            1995                                 2 

8                           b                           a                            1996                                 3

 

(Alliance between 'a' -  'b' and between 'b' -'a' should be treated as same) 

 

I tried Proc SQL distinc, but just gives unique relationships. I need count at the diadic relationship level 

 

Thanks,

 

 

 

2 REPLIES 2
Shmuel
Garnet | Level 18

You can create an intermediate variable sort_key by:

     if  principal gt partner

         then sort_key = partner || principal;

         else sort_key =  principal || partner;

 

then run your sql counting group by sort_key.

buckeyefisher
Obsidian | Level 7

Shumel,

 

Although I am yet to verify all possible combinations, initial results are promising. 

 

Thanks,

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 save with the early bird rate—just $795!

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1506 views
  • 0 likes
  • 2 in conversation