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.
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.
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.
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.