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.
Este exercício faz parte do curso
Practicing Statistics Interview Questions in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Visualize the distribution
plt.hist(____)
plt.show()