Blog survey
You are a blogger that realized that up until 2014, four of the seven previous US presidents are/were left-handed. Out of curiosity, you conduct a survey asking your readers which hand they use for certain tasks. Your survey asks for respondents' gender, Gender, age Age, and handedness Left - right handed.
The dataset, pandas, and matplotlib.pyplot have been uploaded for you as hand_survey, pd, and plt, respectively.
Este exercício faz parte do curso
Analyzing Survey Data in Python
Instruções do exercício
- Create a crosstab which counts the number of left handed and right handed, male and female respondents.
- Create a horizontal bar plot of your results.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Create a crosstab of male and female handedness
survey_crosstab = pd.____(____,____)
# Create a horizontal bar plot of your results
____
plt.show()