ComeçarComece de graça

Aggregate and Calculate Proportions

In this exercise we will explore Hispanic racial identity. Hispanics self-identify as a variety of races. We will use the sum() method to help calculate national percentages of Hispanics identifying as each race.

Census workers are often promulgating information to the public, who are used to seeing proportions as percentages. For this reason, we will use percentages in this exercise and throughout this course.

pandas has been imported as pd. State-level counts from table "P5 - Hispanic or Latino Origin by Race" have been loaded into the DataFrame states.

Este exercício faz parte do curso

Analyzing US Census Data in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# What percentage of Hispanics identify as White?
print(100 * states[____].sum() / states[____].sum())
Editar e executar o código