BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
newone
Calcite | Level 5

I have variables asset, year. I want to rank asset by year, that is to rank asset within each year. There is no tie in the asset. I want to have four groups of equal sizes based upon the rank of asset.  I used proc rank procedure. I used groups=4 option. But in the result, the number of obs in each group is not equal. Why are they not equal? How to do this correctly?Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Provide some example data to get a code answer 🙂

View solution in original post

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Provide some example data to get a code answer 🙂

Ksharp
Super User

try

proc rank data=have groups=4 tie=dense;

by year;

var asset;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1505 views
  • 0 likes
  • 3 in conversation