Figure 5.5 Maps of areas with widely varying populations

figures
code
R

Not too much to say here, except that it would be nice if somebody would develop a better approach to mapping US-wide data. Counties really are a terrible base unit. Augmenting the data with population density helps a little…

Code
library(sf)
library(tmap)
library(cols4all)
library(dplyr)

ca <- st_read("ca-pops.gpkg") |>
  mutate(area = st_area(geom), 
         pop_density = population / area * 1000000)

An opportunity here to get acquainted with the new semantics of tmap version 4…

Code
m1 <- tm_shape(ca) + 
  tm_polygons(
    fill = "population", col = "white", lwd = 0.5,
    fill.scale = tm_scale_intervals(values = "brewer.reds", 
                                    style = "pretty"),
    fill.legend = tm_legend(title = "Population", 
                            position = c(0.53, 0.8))) + 
  tm_layout(frame = FALSE, legend.frame = FALSE)
  
m2 <- tm_shape(ca) + 
  tm_polygons(
    fill = "pop_density", col = "white", lwd = 0.5,
    fill.scale = tm_scale_intervals(values = "brewer.greens",
                                    style = "pretty"),
    fill.legend = tm_legend(title = "Pop density", 
                            position = c(0.53, 0.8))) + 
  tm_layout(frame = FALSE, legend.frame = FALSE)

m3 <- tm_shape(ca) + 
  tm_polygons(
    fill = "pop_density", col = "white", lwd = 0.5,
    fill.scale = tm_scale_intervals(values = "brewer.blues", 
                                    style = "log10_pretty"),
    fill.legend = tm_legend(title = "Pop density", 
                            position = c(0.53, 0.8))) + 
  tm_layout(frame = FALSE, legend.frame = FALSE)
  
tmap_arrange(m1, m2, m3)

Code
# License (MIT)
#
# Copyright (c) 2023 David O'Sullivan
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to  permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

© 2023-24 David O’Sullivan