我想做一个levelplot
有背景图片的。以下代码提示错误消息Error in rasterImage(image, x[1], y[1], x[length(x)], y[length(y)]) :
plot.new has not been called yet
- 显然rasterImage
无法将打印levelplot
的对象识别为绘图。什么是合适的方法而不是rasterImage
?
library("png")
library("lattice")
library("latticeExtra")
MyFunction <- function(x,y){
return(
dnorm(sqrt(x^2+y^2))
)
}
meshstep <- 0.2
x<- seq(-20,20,meshstep)
y <-seq(-20,20,meshstep)
image <- readPNG("imagepath\\image.png")
grid <- expand.grid(x=x, y=y)
grid$z<- MyFunction(grid$x,grid$y)
MyPalette <- colorRampPalette(c('white','yellow', 'red'))
levels <- 10
p<- levelplot(z~x*y, grid, cuts = levels, xlab="",
ylab="",
colorkey = TRUE, region = TRUE,col.regions=MyPalette(levels+1),
alpha.regions=0.3)
plot(p)
rasterImage(image, x[1], y[1],x[length(x)],y[length(y)])