Session Ready
Exercise

Counting citizens by state

You can weigh your count by particular variables rather than finding the number of counties. In this case, you'll find the number of citizens in each state.

counties_selected <- counties %>%
  select(region, state, population, citizens)
Instructions
100 XP
  • Count the number of counties in each state, weighted based on the citizens column, and sorted in descending order.