BookmarkSubscribeRSS Feed
France
Quartz | Level 8

Dear all,

 

how to chose country character which record most frequently with the company.

 

for example

  

country, company
US, apple
US, apple
GB, apple
US, apple
CH, pear
CH, pear
US, pear

 

I would like the result looks like

 

country, company
US, apple
CH, pear

Could you please give me some suggestion about it?

thanks in adanvce

2 REPLIES 2
ballardw
Super User

If I understand then something like this perhaps:

proc freq data=have noprint;
   table company*country/out=work.temp(drop=percent);
run;

proc sort data=work.temp;
  by company descending count;
run;

data want;
  set work.temp;
  by company;
  if first.company;
run;

is just one way.

 

novinosrin
Tourmaline | Level 20
data have;
infile cards dsd truncover;
input (country company) (:$10.);
cards;
US, apple
US, apple
GB, apple
US, apple
CH, pear
CH, pear
US, pear
;

proc sql;
create table want(drop=c) as
select *
from (select company,country, count(company) as c from have group by company,country)
group by company
having c=max(c);
quit;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 2 replies
  • 492 views
  • 1 like
  • 3 in conversation