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
.
This exercise is part of the course
Analyzing Survey Data in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Count the number of responses for each age group
freq_dist = ____.____.____().____('Number')
print(freq_dist)