Get startedGet started for free

Summarizing by state

Another interesting column is land_area, which shows the land area in square miles. Here, you'll summarize both population and land area by state, with the purpose of finding the density (in people per square miles).

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

This exercise is part of the course

Data Manipulation with dplyr

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

counties_selected %>%
  # Group by state 
  ___
  # Find the total area and population
  ___
  
Edit and Run Code