與spplot()圖例相比,如何使用ggplot改進空間柵格圖圖的圖例?與spplot相比,如何使用ggplot改進空間柵格圖?
我想用ggplot情節空間地圖(),而不是ssplot(),然而還有比spplot的時候,我想提高几件事情:
- 創建ggplot傳說,從去小(底部)到較大值(頂部)
- 在ggplot圖例中有類似於ssplot()圖例的中斷,以便我知道每種顏色的邊界是什麼。
## load packages
require(raster)
require(ggplot2)
require(rgdal)
require(RColorBrewer)
set.seed(1)
r <- raster(xmn=-110, xmx=-90, ymn=40, ymx=60, ncols=40, nrows=40,
crs="+proj=lcc +lat_1=48 +lat_2=33 +lon_0=-100
+ellps=WGS84")
r <- setValues(r,matrix(rnorm(1600, mean=0.4,sd=0.2)))
## 1. spatial map with spplot
cuts <-seq(minValue(r),maxValue(r),length.out=8)
cuts = round(cuts,digits=2)
col.regions = brewer.pal(length(cuts)+3-1, "RdYlGn")
print(
spplot(as(r, 'SpatialGridDataFrame'),at=cuts,
col.regions=col.regions,
colorkey=list(labels=list(at=cuts),at=cuts), pretty=TRUE,
scales=list(draw=T)
)
)
## 2. spatial map with ggplot
p = rasterToPoints(r); df = data.frame(p)
colnames(df) = c("x", "y", "NDVI")
p <- ggplot(data=df) + geom_tile(aes(x, y, fill=NDVI)) +
coord_equal() + labs(x=NULL, y=NULL) +
scale_fill_gradient2(low="red", mid="yellow",high="green",
limits=c(minValue(r),maxValue(r)), midpoint = 0.4) + theme_bw() +
scale_x_continuous(expand=c(0,0)) + scale_y_continuous(expand=c(0,0))
print(p)
ssplot()導致
ggplot()導致
請不要使用紅綠對比。 5-10%的紅綠色弱點男性會發現[非常難讀](http://vischeck.homeip.net/uploads/131191118210660/)。 – hadley
鏈接到Koske的網站 - 說明了我想要做的或多或少的事情。我將進一步探索ggplot()容量,調整顏色,改進圖例並在下面發佈更新。所有提示/例子都歡迎。謝謝 – Janvb