Hello!

Quick question - I have data from a survey where participants can select multiple options for race. It comes across in our dataset as multiple yes/no (1/0) variables for each race category. I am trying to collapse them - but first I want to look at how these are distributed throughout the dataset. I am familiar with how to do this is SAS. It would be something like this:

proc freq data=have;
table var1*var2*var3*var4*var5/list missing; run;

I also use this a lot to check to make sure my newly created variables are correct. How can I replicate a similar output in STATA?

Thanks!