ComenzarEmpieza gratis

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 ejercicio forma parte del curso

Analyzing Survey Data in Python

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# 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()
Editar y ejecutar código