QUESTION 6 - ANSWER

How many White men in the sample reside in rural areas?

Answer:

14 White men in the Saldru12 sample reside in rural areas.

To obtain the answer to question 6, you could have used the following commands:

tab race if rural == 1 & gender_n == 3

Again we use the tabulate command with a qualifier to reduce the frequency distribution to the group of interest. The command tabulate race displays the distribution of the race variable across the given categories. This distribution is then restricted to only those male respondents that reside in a rural area using the rural and gender_n variables in a qualifying statement. From the table displayed we see that 14 White men reside in rural areas.

Back to Questions