Hi,
Newbie here. Working with a data set that has sex and race. I want to look at specific variables by white males, white females black males and black females.
How do I combine sex with race into one variable such as whitemale? Is this possible?
I want to take a variable such as assistance with shopping and compare the four different groups.
What is the best way to do that?
Appreciate the help. Qualitative person trying to do quantitative analysis.
Something like
proc means data=have nway /* add statistics here */;
class sex race;
var /* add analysis variables */;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.