BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jamuriuk
Fluorite | Level 6

Hello team,

i am trying to group the variable "age" to assign a dummy with groupings 0-14 years, 15-65 years and above 65 years. My variable representing age is z2. How do I set the codes please?

 

James

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

If you use formats such as @Jim_G suggested then you can avoid adding variables to the data set for almost any analysis tasks. The groups assigned by a format will be used in almost all of the analysis procedures and have the very signficant advantage of if you want to see what the difference may be when you change the boundary for one of the categories you make a new custom format and use that in the procecure code for the age variable. No added variables and if you data is largish then you don't spend extra time with multiple data sets.

View solution in original post

4 REPLIES 4
WarrenKuhfeld
Ammonite | Level 13

x1 = 0 le z2 le 14;

x2 = 15 le z2 le 65;

x3 = z2 gt 65;

jamuriuk
Fluorite | Level 6
Thank you although I did not want to add extra variables x1, x2 and x3. I have apparently used

if age <= 15 then z2=1;else if 12 <= age < 65 then z2=2;else if age >=65 then z2=3; and it has worked.

Thanks so much.

James
Jim_G
Pyrite | Level 9

proc format; value age

0-14='0-14 '
15-65='15-65'
65-120='gt 65';


data; input name $ age ;

format age age.;

cards;
mary 12
joe 60
;

proc print; run

proc format; value age

0-14='0-14 '
15-65='15-65'
65-120='gt 65';


data; input name $ age ;

format age age.;

cards;
mary 12
joe 60
;

proc print; run

 


proc format; value age

0-14='0-14 '
15-65='15-65'
65-120='gt 65';


data; input name $ age ;

format age age.;

cards;
mary 12
joe 60
;

proc print; run

You can use proc format   like this;

 


 proc format; value  age
 
 0-14='0-14  '
 15-65='15-65'
  65-120='gt 65';
  
  data;   input name $ age ;
    format age age.;
   cards;
  mary 12
  joe  60
  ;
 
  proc print;  run 

 

 

 

Jim

ballardw
Super User

If you use formats such as @Jim_G suggested then you can avoid adding variables to the data set for almost any analysis tasks. The groups assigned by a format will be used in almost all of the analysis procedures and have the very signficant advantage of if you want to see what the difference may be when you change the boundary for one of the categories you make a new custom format and use that in the procecure code for the age variable. No added variables and if you data is largish then you don't spend extra time with multiple data sets.

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 20676 views
  • 3 likes
  • 4 in conversation