Rectangling data: applications

locations: result from several unnesting operations on gmaps_cities.

locations |> 
  select(city, formatted_address, geometry)
## # A tibble: 7 × 3
##   city       formatted_address   geometry        
##   <chr>      <chr>               <list>          
## 1 Houston    Houston, TX, USA    <named list [4]>
## 2 Washington Washington, USA     <named list [4]>
## 3 Washington Washington, DC, USA <named list [4]>
## 4 New York   New York, NY, USA   <named list [4]>
## 5 Chicago    Chicago, IL, USA    <named list [4]>
## 6 Arlington  Arlington, TX, USA  <named list [4]>
## 7 Arlington  Arlington, VA, USA  <named list [4]>