我能够使用 和 准备一个县的人口普查区地图(显示所有人口普查区tidycensus
)tigris
。我在一个名为的单独数据框中有一些数据,其中demography
包含 4 列county
、、、和。tract
x.foreclosure_filing
delinquent_parcels
如何仅创建demography
(仅 19 个)数据框中的那些区域的地图,并在地图中显示x.foreclosure_filing
和delinquent_parcels
这些(19 个)区域的值?
人口统计数据框如下所示:
County tract X.foreclosure_filings delinquent_parcels
1 Cuyahoga 1401.00 8 13.52
2 Cuyahoga 1403.01 18 22.25
3 Cuyahoga 1403.02 18 11.96
4 Cuyahoga 1404.00 19 8.44
5 Cuyahoga 1405.00 27 10.93
6 Cuyahoga 1407.01 17 13.77
代码
library(tidycensus)
library(tidyverse)
options(tigris_use_cache = TRUE)
clevelandhts <- get_acs(state = "OH", county = "Cuyahoga", geography = "tract",
variables = "B19013_001", geometry = TRUE)
View(clevelandhts)
clevelandhts %>%
ggplot(aes(fill = estimate)) +
geom_sf(color = NA) +
coord_sf(crs = 26917) +
scale_fill_viridis_c(option = "magma")