BookmarkSubscribeRSS Feed
RandyStan
Fluorite | Level 6

 

Dear All:

This is the code I wrote

 

Proc freq data = have;
 Tables DIM;
 Format DIM DIM_groups.;

0-50    =   '0-50';

51-76  =   '51-76'

76-100 = ''76-100'

>100 = '>100'
Run;   

 

I also have two Variables -- VARA and VARB.  I want to find the Average, MIN and MAX of those variables in each of these groups.

 

Can someone help?

 

Randy.

1 REPLY 1
PaigeMiller
Diamond | Level 26

You can't mix PROC FREQ code with PROC FORMAT code. It should look like this:

 

proc format;
    value dim_groups 0-50='0-50' 51-76='51-76' ... ; /* You type the rest */
run;

proc freq data=have;
    tables dim;
    format dim dim_groups.;
run;

I also have two Variables -- VARA and VARB.  I want to find the Average, MIN and MAX of those variables in each of these groups.

proc summary data=have;
    var vara varb;
    class dim;
    format dim dim_groups.;
    output out=stats mean= min=min_vara min_varb
        max=max_vara max_varb;
run;
--
Paige Miller

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

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
  • 1 reply
  • 744 views
  • 3 likes
  • 2 in conversation