CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Analyzing Survey Data in Python

Afficher le cours

Instructions

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

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create a cross-tabulation of "Gender" and "Education"
cross_tabulation = ____.____(we_survey.____,
                             we_survey.____, 
                             margins = True)
print(cross_tabulation)
Modifier et exécuter le code