НачатьНачать бесплатно

Calculating the percentage of women in a county

The dataset includes columns for the total number (not percentage) of men and women in each county. You could use this, along with the population variable, to compute the fraction of men (or women) within each county.

In this exercise, you'll select the relevant columns yourself.

Это упражнение является частью курса

Data Manipulation with dplyr

Посмотреть курс

Инструкции к упражнению

  • Select the columns state, county, population, men, and women.
  • Add a new variable called proportion_women with the fraction of the county's population made up of women.

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

counties_selected <- counties %>%
  # Select the columns state, county, population, men, and women
  ___

counties_selected %>%
  # Calculate proportion_women as the fraction of the population made up of women
  ___
Редактировать и запускать код