BookmarkSubscribeRSS Feed
anuli98
Calcite | Level 5

I have two different groups (for the purpose of this discussion, lets just say males vs. females) and I am trying to compare the number of missed days of school between the two groups. The problem is, in the data there are two separate variables for missed school days for the two groups (i.e. for males, the variable is missedschool_males and females, missedschool_females; there's a reason why there are separate variables in the dataset, but I won't go in to that). Obviously, the information is the same, I just need to combine the values into one general missed_days_school variable and determine group differences using this new variable. Can someone please help me to do this. Thanks.

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Several ways I can think of right off the bat, however probably the easiest:

data want;

     set have;

     missed_days_school=sum(missedschool_males,missedschool_females);

run;

You could do it by and if statement.  Or a rename.  Its your choice.

ballardw
Super User

Or create a temporary data set to analyze that issue:

data temp;

     set have;

     type='M'; DaysMissed=missedschool_males;output;

     type='F'; DaysMissed=missedschooo_females;output;

    keep type daysmissed;/* and any other identification variables of interest*/

run;

Then you can run tests on DaysMissed classed by type for t-tests, comparison of distributions whatever.

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

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
  • 2 replies
  • 1104 views
  • 0 likes
  • 3 in conversation