BookmarkSubscribeRSS Feed
SIgnificatif
Quartz | Level 8

Hi all,

I would like to perform a query to select top 3 ID's that have max row counts,

I have found that it's possible to do with this query :

proc sql;
create table want as
select *
from (select id, count(*) as cnt from have group by id_user)
having cnt=max(cnt);
quit;

 

but I would like to select top 3 ID' s that have the max count of rows of variable Name ( attached image) , the ID 1001 must come first , the 1002 second and 1004 third.

Anyone have an idea to that ?

countrow_order.jpg
Thanks.

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Why would ID=1004 and not 1005 be in the data? They both appear once?

SIgnificatif
Quartz | Level 8

yes,

we can add them,

the idea is to get top 3 , I don't need others, but ordering by variables count could also be an option.... so I can srroll trhough them all from top...

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!
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.

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