1. Learn
  2. /
  3. Courses
  4. /
  5. Data Manipulation with dplyr

Connected

Exercise

Counting by region

The counties dataset contains columns for region, state, population, and the number of citizens, which we selected and saved as the counties_selected table. In this exercise, you'll focus on the region column.

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

Instructions

100 XP
  • Use count() to find the number of counties in each region, using a second argument to sort in descending order.