ComenzarEmpieza gratis

Frequency distribution

Studying dietary habits across various demographics will help understand a plethora of things about individuals and groups, their health and lifestyle, among other things. As a result, the survey, dietary_habits asked participants their age group, Age, gender, Gender, how many meals they had in a day, meals_per_day, and how many times a week they ordered in or ate out, eat_out_per_wk.

In this exercise, you will create a frequency distribution of the number of responses for each age group in the survey data.

pandas as been loaded for you as pd, and matplotlib.pyplot as plt.

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.

# Count the number of responses for each age group
freq_dist = ____.____.____().____('Number')
print(freq_dist)
Editar y ejecutar código