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)
Latihan ini adalah bagian dari kursus
Data Manipulation with dplyr
Petunjuk latihan
- Count the number of counties in each state, weighted based on the
citizenscolumn, and sorted in descending order.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
# Find number of counties per state, weighted by citizens, sorted in descending order
counties_selected %>%
___