Measures of central tendency
You've studied the frequency distribution of respondents, as well as the range and standard deviation of meals eaten out or ordered; you decide to analyze the dataset further. Remember, 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 calculate the central tendency of the survey data.
pandas
as been loaded for you as pd
.
Este ejercicio forma parte del curso
Analyzing Survey Data in Python
Instrucciones del ejercicio
- Calculate the mean, median, and mode times per week that respondents ordered in or ate out.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Calculate the mean
mean_value = ____
print('mean_value = ', mean_value)
# Calculate the median
median_value = ____
print('median_value = ', median_value)
# Calculate the mode
mode_value = ____
print('mode_value = ', mode_value)