您可以使用state_zoom
参数来zip_choropleth
. 但正如包装文件中所述,没有基于 MSA 的 choropleth。这看起来如何的一个例子:
states <- unique( zip.regions$state.name)
lower48 <- states[ ! states %in% c('alaska','hawaii') ]
zip_choropleth(df_pop_zip,
state_zoom = lower48 ,
title = "2012 MSA\nZCTA Population Estimates",
legend = "Population")
它看起来大部分是灰色的,因为 ZCTA 边界呈现为灰色并且在这个比例下它们是密集的。如果您运行代码并查看更高的分辨率,您可以看到更多的填充。
我为您的任务推荐的替代方案是tidycensus
包。请参阅下面的代码片段,我相信它会创建与您感兴趣的地图相似的地图。我只选择了几个州来阐明视觉效果,并在县级进行绘图。我也只绘制了总人口中前 85% 的 MSA。例如,这消除了 Danville Virginia。
# adapted from https://walkerke.github.io/2017/06/comparing-metros/
library(viridis)
library(ggplot2)
library(tidycensus)
library(tidyverse)
library(tigris)
library(sf)
options(tigris_class = "sf")
options(tigris_use_cache = TRUE)
# census_api_key("YOUR KEY HERE")
acs_var <- 'B01003_001E'
tot <- get_acs(geography = "county", variables = acs_var, state=c("PA", "VA", "DC","MD"),
geometry = TRUE)
head(tot)
metros <- core_based_statistical_areas(cb = TRUE) %>%
select(metro_name = NAME)
wc_tot <- st_join(tot, metros, join = st_within,
left = FALSE)
pct85 <- wc_tot %>% group_by(metro_name) %>%
summarise(tot_pop=sum(estimate)) %>% summarise(pct85 = quantile(tot_pop, c(0.85)))
pct85_msas = wc_tot %>% group_by(metro_name) %>%
summarise(tot_pop=sum(estimate)) %>% filter(tot_pop > pct85$pct85[1])
head(wc_tot)
ggplot(filter(wc_tot, metro_name %in% pct85_msas$metro_name),
aes(fill = estimate, color = estimate)) +
geom_sf() +
coord_sf(crs=3857) +
#facet_wrap(~metro_name, scales = "free", nrow = 1) +
theme_minimal() +
theme(aspect.ratio = 1) +
scale_fill_viridis() +
scale_color_viridis()
结果图:
我注释掉的方面线似乎是 ggplot 中一个积极开发的领域。我遇到了一个错误,但我提到的源文章显示了如何充分利用它来为每个 MSA 显示一个面板,这很有意义。请参阅https://github.com/tidyverse/ggplot2/issues/2651。