Mean or median
As data scientists, we often look to describe data as concisely as possible. This brings us to the two most common measures of centrality: mean and median. In this exercise, you'll examine a couple different scenarios and decide which metric is optimal for effectively describing the data.
More concretely, you'll be exploring Australian weather data containing features related to temperature and wind speeds. This dataset has already been imported as weather and both the matplotlib and pandas packages have been imported as plt and pd for you to use the rest of the chapter as well.
This exercise is part of the course
Practicing Statistics Interview Questions in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Visualize the distribution
plt.hist(____)
plt.show()