改变ggplot + geom_sf choropleth填充颜色

时间:2018-01-16 19:05:31

标签: r ggplot2 sf

这涉及github上的ggplot2版本,它支持绘制sf包中的空间数据。它由

安装
devtools::install_github("tidyverse/ggplot2")

我曾预料到以下

library(sf)
library(ggplot2) 
nc <- read_sf(system.file("gpkg/nc.gpkg", package="sf"))
ggplot() + geom_sf(data = nc) + aes(fill = BIR74) +
  theme(panel.grid.major = element_line(color = "white")) +
  scale_colour_gradientn(colors = terrain.colors(20))

给出地形颜色,但它给出了

enter image description here

如何操作填充色?

0 个答案:

没有答案