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.
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;
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.