Weighted sampling on handedness
You are a part of a team of university researchers set out to conduct a study on left-handedness. You conduct a survey via your university's social media platforms, asking participants 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
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Groupby Gender and Handedness
hand_survey = hand_survey.groupby(
[____])[
____].____.reset_index()
hand_survey.columns = ['Gender','Handedness','Respondents']
# Create new column that calculates the percentage of each respondent type
hand_survey['% total respondents'] = ____*100./____.sum()