ComenzarEmpieza gratis

Visualize data: histogram

For your statistics class project, you asked your friends to participate in a survey to better understand the gender differences in specific preferences in young adults. Part of survey, young_people, asked for respondents’ Gender, Age, Height, and Weight.

In this exercise, you will visualize the distribution of the respondents' height.

pandas, scipy.stats and matplotlib.pyplot have been loaded for you as pd, stats and plt, respectively.

Este ejercicio forma parte del curso

Analyzing Survey Data in Python

Ver curso

Instrucciones del ejercicio

  • Plot the distribution of values in the Height column using a histogram.

Ejercicio interactivo práctico

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

# Histogram of Height column
young_people.____.____(kind=____)
plt.show()
Editar y ejecutar código