geom_polygon颜色设置将被忽略

时间:2019-02-14 09:04:09

标签: r ggplot2

enter image description here 这是慕尼黑的公开地图,其中我的颜色设置被忽略了。

sf[, "mycol"] <- c("white")
sf[sf$id>=1080, "mycol"] <- c("blue")

map <- ggplot(data = sf, aes(x = long, y = lat, group = id)) + 
  geom_path() + 
  geom_polygon(aes(fill = mycol, group = id)) + 
  clean_theme()
print(map) 

如何解决数据错误/漏洞?

0 个答案:

没有答案