1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to Databases in Python

Connected

Exercise

Determine the average age by population

As Jason discussed in the video, to calculate a weighted average, we first find the total sum of weights multiplied by the values we're averaging, then divide by the sum of all the weights.

For example, if we wanted to find a weighted average of data = [10, 30, 50] weighted by weights = [2,4,6], we would compute \(\frac{2 \cdot 10 + 4 \cdot 30 + 6 \cdot 50}{2+4+6}\), or sum(weights * data) / sum(weights).

In this exercise, however, you will make use of func.sum() together with select to select the weighted average of a column from a table. You will still work with the census data, and you will compute the average of age weighted by state population in the year 2000, and then group this weighted average by sex.

Instructions 1/4

undefined XP
    1
    2
    3
    4
  • Import select and func from sqlalchemy.
  • Write a statement to select the average of age (age) weighted by population in 2000 (pop2000) from census.