1. Learn
  2. /
  3. Courses
  4. /
  5. Analyzing Survey Data in Python

Exercise

Find the z-score

Now that you know the spread of heights from the survey, you want to dig further into the survey. Remember, part of survey, young_people, asked for respondents' Gender, Age, Height, and Weight.

In this exercise, you will find outliers in the height column.

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

Instructions

100 XP
  • Find the z-score of the Height column.
  • Find the outliers in Height_zscore for this survey.