BookmarkSubscribeRSS Feed
molla
Fluorite | Level 6

Hii ,I have a data set shown below

 

sex    count

f          122

m        100 

 

I need the following output

sex    count

f           122

m         100    

t           222

 

this has to be done in data step only ,don't use procedures

4 REPLIES 4
Reeza
Super User

Look up the RETAIN statement. 

Shmuel
Garnet | Level 18

Use RETAIN total and add the count to it at every observation.

Assign a variable to set input with end=     (like end=eof)

and next lines to your code:

      IF eof then do;

         sex = 'TOTAL';

         count = total;

         output;

    end;

Astounding
PROC Star

Just looking at the elephant from a slightly different viewpoint:

 

data want (drop=totcount);

do until (done);

   set have end=done;

   output;

   totcount + count;

end;

sex='t';

count = totcount;

output;

run;

ballardw
Super User

Please be aware that the habit of putting a summary value into a data set unless strictly for the purpose of display (in which case a report procedure may be more appropriate for many other reasons) is likely to cause problems.

 

For instance if you were to take your resulting data set into a regression type analysis you now have 3 levels of "sex" and one of them has way larger values than the other. Results could be quite entertaining... Worse would be an analysis that does not consider Sex but just uses the count.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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
  • 4 replies
  • 920 views
  • 4 likes
  • 5 in conversation