BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jonatan_velarde
Lapis Lazuli | Level 10

Good morning SAS friends:

 

i hace this data set:

 

data have:

input ANIMAL    CG_GROW;

cards;
1    1
2    1
3    1
4    1
5    2
6    2
7    3
8    4
9    4
10    4
;

 

i need to obtain a summary info in the output describing the levels of CG_GROW variable and the number of the ocorrences like:

 

variable                  level          n

CG_GROW          1                4

CG_GROW          2                2

CG_GROW          3                1

CG_GROW          4                4

 

 

Thank you for your help

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Not tested yet as my SAS is working on something, but this should be near.

 

proc sql;
  create table WANT as
  select  "CG_GROW" as VARIABLE,
           CG_GROW as LEVEL,
           count(distinct ANIMAL) as N
  from     HAVE
  group by CG_GROW;
quit;

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Not tested yet as my SAS is working on something, but this should be near.

 

proc sql;
  create table WANT as
  select  "CG_GROW" as VARIABLE,
           CG_GROW as LEVEL,
           count(distinct ANIMAL) as N
  from     HAVE
  group by CG_GROW;
quit;
Astounding
PROC Star

SAS has a very simple tool to create this type of report.  This should become part of your repertoire:

 

proc freq data=have;

tables cg_grow;

run;

 

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1225 views
  • 1 like
  • 3 in conversation