ComeçarComece de graça

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 exercício faz parte do curso

Analyzing Survey Data in Python

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Create a cross-tabulation of "Gender" and "Education"
cross_tabulation = ____.____(we_survey.____,
                             we_survey.____, 
                             margins = True)
print(cross_tabulation)
Editar e executar o código