1. Learn
  2. /
  3. คอร์ส
  4. /
  5. Data Manipulation with dplyr

Connected

แบบฝึกหัด

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)

คำแนะนำ

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