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
.
Este ejercicio forma parte del curso
Analyzing Survey Data in Python
Instrucciones del ejercicio
- Create a cross-tabulation of
Gender
andEducation
showing the frequency distribution between both variables.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create a cross-tabulation of "Gender" and "Education"
cross_tabulation = ____.____(we_survey.____,
we_survey.____,
margins = True)
print(cross_tabulation)