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 :
What I would like is to create a table that will contains the number of observation per group. So something like :
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
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;
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
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.
Ready to level-up your skills? Choose your own adventure.