这涉及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))
给出地形颜色,但它给出了
如何操作填充色?