BookmarkSubscribeRSS Feed
starz4ever2007
Quartz | Level 8

Hi I am trying to separate the following variable:

 

agegroup

up to 59 days

2 months to 17 years

4 years to 10 years

up to 12 hours

7 years to 8 years

10 years and older

all ages

 

TO

 

agegroup1       agegroup2

up                     59 days

2 months          17 years

4 years             10 years

up                     12 hours

7 years              8 years

10 years            older

 all                     ages

 

THEN, i would like all values to be converted into months (and if in the variables "up", then = 0, and if "older", then = 1200, and if "all", then=0, and if "ages", then = 1200):

 

agegroup1_a     agegroup2_a

0                         1.94

2                         204

48                       120

0                         0.02

84                       96

120                     1200                  

5 REPLIES 5
Shmuel
Garnet | Level 18

Spliting agegroup:

data temp;
 set have;
      ix = index(agegroup,'to');
     agegroup1 = substr(agegroup,1,ix);
     agegroup2 = substr(agegroup,ix+3);
drop ix; run;

Coversion:

data want;
 set temp;
       length from to 8;
       keep from upto;
       
      if  strip(agegroup1) in ('up' 'all)  then from=0; else
      if index(agegroup1,'month') > 0 then from = input(compress(agegroup1,,'A'),best.); else
      if index(agegroup1,'year') > 0 then from =  input(compress(agegroup1,,'A'), best.)/12; 

      if index(agegroup2,'days') > 0 then
         upto = input(compress(agegroup2,,'A'), best.)/30; 
      else  if index(agegroup2,'year') > 0 then upto= input(compress(agegroup2,,'A'), best.)/12; 
      else  if index(agegroup2,'hour') > 0 then upto = input(compress(agegroup2,,'A'), best.)/(30*24); 
      else if strip(agegroup2) in ('older' 'ages') then upto=1200;
run;

I haven't tested it but it should work.

 

starz4ever2007
Quartz | Level 8

Hi,

 

Thank you for the response....I was finally able to try your suggeste code today...so for the splitting of the age group, the "t" from the word "to" still remains in agegroup1

 

Also, I get the following error in the conversion code: 

 

NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS
release. Inserting white space between a quoted string and the succeeding
identifier is recommended.

ERROR 22-322: Syntax error, expecting one of the following: a quoted string,
a numeric constant, a datetime constant, a missing value, iterator, (, ), ','.

ERROR 76-322: Syntax error, statement will be ignored.

 

at the end of these lines:

 

if index(agegroup1,'year') > 0 then from = input(compress(agegroup1,,'A'),best.)/12; 

else if index(agegroup2,'year') > 0 then upto= input(compress(agegroup2,,'A'), best.)/12;
else if index(agegroup2,'hour') > 0 then upto = input(compress(agegroup2,,'A'), best.)/(30*24);

starz4ever2007
Quartz | Level 8

and the "years and older" shows up in both agegroup1 and agegroup2

 

agegroup1                          agegroup 2

3 years t                             12 years

13 years and older             Years and older

all ages                               l ages

starz4ever2007
Quartz | Level 8

so I figured out how to split the age groups correctly and found that the error statements i was getting was because i was missing a ' at the end of the first "all"

 

however,

 

my new dataset shows as:

 

from           upto

0                  .

0                  .

.                   .

0               1200

 

 

it did not create agegroup1 and agegroup2 in months.....

Shmuel
Garnet | Level 18

Here is a fixed tested code.

 

data have;
     infile datalines truncover;
     input agegroup $30.;
datalines;
up to 59 days
2 months to 17 years
4 years to 10 years
up to 12 hours
7 years to 8 years
10 years and older
all ages
; run;

data temp;
 set have;
     agegroup = compbl(agegroup);

     ix = index(agegroup,'to');
     if ix > 0 then do;
        agegroup1 = substr(agegroup,1,ix-1);
        agegroup2 = substr(agegroup,ix+3); 
     end; else do;
       ix = index(agegroup,'and');
       if ix > 0 then do;
        agegroup1 = substr(agegroup,1,ix-1);
        agegroup2 = substr(agegroup,ix+4); 
       end; else do;
         agegroup1 = scan(agegroup,1);
         agegroup2 = scan(agegroup,2);
       end;
     end;   
     *drop ix;
run;

data want;
 set temp;
      length from to 8;
      keep from upto;
      format from upto best.2;
       
      if  strip(agegroup1) in ('up', 'all')  then from=0; else
      if index(agegroup1,'month') > 0 then from = input(compress(agegroup1,,'A'),best.); else
      if index(agegroup1,'year') > 0 then from =  input(compress(agegroup1,,'A'), best.)*12; 

      if index(agegroup2,'days') > 0 then
         upto = input(compress(agegroup2,,'A'), best.)/30; 
      else if index(agegroup2,'year') > 0 then upto= input(compress(agegroup2,,'A'), best.)*12; 
      else if index(agegroup2,'hour') > 0 then upto = input(compress(agegroup2,,'A'), best.)/(30*24); 
      else if strip(agegroup2) in ('older', 'ages') then upto=1200;

from = round(from, 0.01);
upto = round(upto, 0.01); run;

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1359 views
  • 1 like
  • 2 in conversation