ПочатиПочніть безкоштовно

Selecting a county from each region

Previously, you used the walk column, which offers a percentage of people in each county that walk to work, to add a new column and count to find the total number of people who walk to work in each county.

Now, you're interested in finding the county within each region with the highest percentage of citizens who walk to work.

counties_selected <- counties %>%
  select(region, state, county, metro, population, walk)

Ця вправа є частиною курсу

Data Manipulation with dplyr

Переглянути курс

Інструкції до вправи

  • Find the county in each region with the highest percentage of citizens who walk to work.

Інтерактивна практична вправа

Спробуйте виконати цю вправу, доповнивши цей зразок коду.

counties_selected %>%
  # Group by region
  ___
  # Find the county with the highest percentage of people who walk to work
  ___
Редагувати та запускати код