Get startedGet started for free

Crosstabulation

Students and alumni mainly from the University of Texas were surveyed to see their stance on the topic of female empowerment. Let's get an overall picture of the relationship between degree received and gender.

pandas has been imported for you as pd and the survey as we_survey.

This exercise is part of the course

Analyzing Survey Data in Python

View Course

Exercise instructions

  • Create a cross-tabulation of Gender and Education showing the frequency distribution between both variables.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Create a cross-tabulation of "Gender" and "Education"
cross_tabulation = ____.____(we_survey.____,
                             we_survey.____, 
                             margins = True)
print(cross_tabulation)
Edit and Run Code