是否可以将例如sp.points
图层的键添加到由生成的颜色键中levelplot
?
举个例子:
library(rasterVis)
library(latticeExtra)
library(sp)
r <- as.factor(raster(matrix(rbinom(100, 1, 0.5), 10)))
levels(r)[[1]] <- data.frame(ID=0:1, z=c('a', 'b'))
p <- SpatialPoints(matrix(runif(20), 10))
levelplot(r, margin=list(draw=FALSE), scales=list(draw=FALSE),
col.regions=c('white', 'gray90')) +
latticeExtra::layer(sp.points(p, pch=20, col=1))
我想在现有颜色键下方为点添加一个键条目。
levelplot
一个笨拙的解决方案是按如下方式向调用添加一个键,调整x
andy
值直到它位于所需的位置,但是(1)找到正确的x
和y
值是一种痛苦,需要交互,(2)正确的填充不需要调整大小以适应键,并且 (3) 字体大小不会自动缩放以与颜色键一致。
k <- list(x = 1.02, y = 0.4, corner = c(0, 0), points=list(pch=20, col=1),
text=list('foo', cex=0.9))
levelplot(r, margin=list(draw=FALSE), scales=list(draw=FALSE),
col.regions=c('white', 'gray90'), key=k) +
latticeExtra::layer(sp.points(p, pch=20, col=1))
假设我需要坚持使用lattice
图形,那么克服上面列出的问题的最佳方法是什么?