我遇到一个问题。我正在使用g_map和stat_density2d制作地图。我需要使用多边形来可视化数据。
问题在于第一个多边形(下部)没有覆盖我想要的数据。
这是我的代码:
我可以通过添加更多的垃圾箱来做些事情,但是我不想要更多的垃圾箱。
ggmap(map)+
stat_density2d(data=sample_n(data, 1000), aes(longitude, latitude, fill=..level..),
geom="polygon", contour=T, alpha=0.2, binwidth=0.2, h=0.04, bins=100)+
scale_fill_gradient(low="yellow2", high="red2")+
geom_point(data=sample_n(data,1000), aes(longitude, latitude), size=0.1)
ggmap(map)+
stat_density2d(data=sample_n(data, 1000), aes(longitude, latitude, fill=..level..),
geom="polygon", contour=T, alpha=0.2, binwidth=0.1, h=0.04, bins=10)+
scale_fill_gradient(low="yellow2", high="red2")+
geom_point(data=sample_n(data,1000), aes(longitude, latitude), size=0.1)
ggmap(map)+
stat_density2d(data=sample_n(data, 1000), aes(longitude, latitude, fill=..level..),
geom="polygon", contour=T, alpha=0.2, binwidth=0.1, h=0.1, bins=10)+
scale_fill_gradient(low="yellow2", high="red2")+
geom_point(data=sample_n(data,1000), aes(longitude, latitude), size=0.1)
第一:
更高的h参数:
更多垃圾箱-预期外观: