ggplot中的Shapefile:无法用列的值填充多边形

时间:2018-10-16 15:58:48

标签: r ggplot2 shapefile

我正在尝试绘制形状文件,其中多边形由一列的值填充。

我使用了以下代码:

Groups <- readOGR(".", layer="Grid_GroupMean1")
ggShape <- ggplot(data = Groups, aes(x=long, y=lat, group = group, fill = Groupr))+ geom_polygon() +geom_path(color = "white")
print(ggShape)

因子“ Groupr”的级别为5(O,1,2,3,5,6)。 这个因素有很多零。我不知道这是否有问题。

形状文件的绘图无需功能“填充”即可使用。

enter image description here

enter image description here

0 个答案:

没有答案