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.
Diese Übung ist Teil des Kurses
Analyzing Survey Data in Python
Anleitung zur Übung
- 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.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Create a crosstab of male and female handedness
survey_crosstab = pd.____(____,____)
# Create a horizontal bar plot of your results
____
plt.show()