Construct a continuous area cartogram by a rubber sheet distortion algorithm (Dougenik et al. 1985), non-contiguous Area Cartograms (Olson 1976), and non-overlapping Circles Cartogram (Dorling el al. 1996) in R.
You can install the cartogram package from CRAN as follows:
install.packages("cartogram")
To upgrade to the latest development version of
cartogram
, install the package devtools
and
run the following command:
::install_github("sjewo/cartogram") devtools
library(cartogram)
library(tmap)
library(maptools)
#> Loading required package: sp
#> Checking rgeos availability: TRUE
data(wrld_simpl)
# keep only the african continent
<- wrld_simpl[wrld_simpl$REGION == 2, ]
afr
# project the map
<- spTransform(afr, CRS("+init=epsg:3395"))
afr
# construct cartogram
<- cartogram_cont(afr, "POP2005", itermax = 5)
afr_cont #> Warning in CPL_crs_from_proj4string(x): GDAL Message 1: +init=epsg:XXXX syntax
#> is deprecated. It might return a CRS with a non-EPSG compliant axis order.
#> Mean size error for iteration 1: 5.79457153280442
#> Mean size error for iteration 2: 4.94825547349441
#> Mean size error for iteration 3: 4.32626995057149
#> Mean size error for iteration 4: 3.84940324694301
#> Mean size error for iteration 5: 3.45917774259599
# plot it
tm_shape(afr_cont) + tm_polygons("POP2005", style = "jenks") +
tm_layout(frame = FALSE, legend.position = c("left", "bottom"))
Many thanks to @rCarto and @neocarto for contributing the code!
# construct cartogram
<- cartogram_ncont(afr, "POP2005")
afr_ncont
# plot it
tm_shape(afr) + tm_borders() +
tm_shape(afr_ncont) + tm_polygons("POP2005", style = "jenks") +
tm_layout(frame = FALSE, legend.position = c("left", "bottom"))
Many thanks to @rCarto for contributing the code!
# construct cartogram
<- cartogram_dorling(afr, "POP2005")
afr_dorling
# plot it
tm_shape(afr) + tm_borders() +
tm_shape(afr_dorling) + tm_polygons("POP2005", style = "jenks") +
tm_layout(frame = FALSE, legend.position = c("left", "bottom"))
Thanks to @Nowosad for speeding things up!
library(sf)
#> Linking to GEOS 3.8.0, GDAL 3.0.2, PROJ 6.2.1
# Create an sf object
<- st_as_sf(afr)
afr_sf
# Continuous Area Cartogram
<- cartogram_cont(afr_sf, "POP2005", 3)
afr_sf_cont #> Mean size error for iteration 1: 5.79457153280442
#> Mean size error for iteration 2: 4.94825547349441
#> Mean size error for iteration 3: 4.32626995057149
# Non-contiguous Area Cartogram
<- cartogram_ncont(afr_sf, "POP2005")
afr_sf_ncont
# Non-overlapping Circles Cartogram
<- cartogram_dorling(afr_sf, "POP2005")
afr_sf_dorling
# Plots
<- tm_shape(afr_sf_cont) + tm_polygons("POP2005", style = "jenks", legend.show = FALSE) +
m1 tm_layout(frame = FALSE)
<- tm_shape(afr_sf) + tm_borders() +
m2 tm_shape(afr_sf_ncont) + tm_polygons("POP2005", style = "jenks", legend.show = FALSE) +
tm_layout(frame = FALSE)
<- tm_shape(afr_sf) + tm_borders() +
m3 tm_shape(afr_sf_dorling) + tm_polygons("POP2005", style = "jenks", legend.show = FALSE) +
tm_layout(frame = FALSE, legend.outside = TRUE)
<- tm_shape(afr_sf_dorling) + tm_polygons("POP2005", style = "jenks") +
ml tm_layout(frame = FALSE, legend.only = TRUE, legend.position = c("center", "center"))
tmap_arrange(m1, m2, m3, ml, nrow = 1)