我正在尝试使用 faceting 来生成多个填充不同值的地图。
我创建了下面的简化示例,它重现了我正在尝试做的事情和我不期望从 ggplot 得到的结果。我使用美国地图并为各州生成两个假设社区。我可以分别绘制每个社区,但是在我尝试同时刻面和生成它们的地方,我只得到一张地图。
require(ggplot2)
require(maps)
map <- map_data("state")
states <- unique(map$region)
# generate some hypothetical communities
runA <- data.frame(region=states, id="A",
community=rbinom(length(states),1,.5))
runB <- data.frame(region=states, id="B",
community=rbinom(length(states),1,.5))
membership <- rbind(runA, runB)
# plot an individual map of communities from run A
df <- merge(map, runA, by="region")
ggplot(df) +
aes(long, lat, group=group) +
coord_equal() +
geom_polygon(aes(fill = as.factor(community)))
# likewise for B
df <- merge(map, runB, by="region")
ggplot(df) +
aes(long, lat, group=group) +
coord_equal() +
geom_polygon(aes(fill = as.factor(community)))
# now instead do one plot with two maps from facetting on id
df <- merge(map, membership, by="region")
ggplot(df) +
aes(long, lat, group=group, facets= id ~.) +
coord_equal() +
geom_polygon(aes(fill = as.factor(community)))
理想情况下,最后一个图应该有两张地图,一张在“A”中显示社区,另一张在“B”中显示社区。相反,该图仅显示一张地图,我什至不确定将什么映射到填充。