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
.
Diese Übung ist Teil des Kurses
Analyzing Survey Data in Python
Anleitung zur Übung
- Create a cross-tabulation of
Gender
andEducation
showing the frequency distribution between both variables.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Create a cross-tabulation of "Gender" and "Education"
cross_tabulation = ____.____(we_survey.____,
we_survey.____,
margins = True)
print(cross_tabulation)