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(county, region, state, population, citizens)
This exercise is part of the course
Data Manipulation with dplyr
Exercise instructions
- Count the number of counties in each state, weighted based on the
citizens
column, and sorted in descending order.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Find number of counties per state, weighted by citizens, sorted in descending order
counties_selected %>%
___