BookmarkSubscribeRSS Feed
nridwan
Calcite | Level 5

Dear all, 

 

I just started to learn and use SAS… I’am currently facing a problem and hope someone would be able to help me. 

 

I have a database of the following form : 

 

Capture d’écran 2015-09-14 à 23.33.18.png

 

What I would like is to create a table that will contains the number of observation per group. So something like : 

 

Capture d’écran 2015-09-14 à 23.41.00.png

 

I am trying to work with a loop that will complete progressively the table but after many trials i am unable to do so… Does someone has an idea ? 

 

Thank you very much

2 REPLIES 2
art297
Opal | Level 21

Proc summary is nice to use for such situations. e.g.,

 

proc summary data=have nway;
  class model;
  var option1-option3;
  output out=want (drop=_:) sum=;
run;

 

arodriguez
Lapis Lazuli | Level 10

An other way to do the same, is create the summary with SQL.

 

PROC SQL;

  create table summary as(

    select model, sum(option1) as option1, sum(option2) as option2, sum(option3) as option3

    from have

    group by model  /*This option make the sum by model*/

  );

 

QUIT;

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

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