打印多个光栅时打开 x 轴和 y 轴值 leveplot R

Turn on x-axis and y-axis values when printing several rasters leveplot R

我想在以下示例中打开 x 和 y 轴值(即标记空刻度线):

library(rasterVis)
s <- stack(replicate(6, raster(matrix(runif(100), 10))))
levelplot(s, layout=c(3, 2), index.cond=list(c(1, 3, 5, 2, 4, 6)))

在实际数据中,我将使用纬度和经度标记空白刻度线。

感谢您的帮助。

library(rasterVis)
s <- stack(replicate(6, raster(matrix(runif(100), 10))))

x.scale <- list(font=10,
                fontface=2,
                alternating=1)

y.scale <- list(font=10,
                fontface=2,
                alternating=1)

levelplot(s, layout=c(3, 2), index.cond=list(c(1, 3, 5, 2, 4, 6)),
  scales = list(x=x.scale, y=y.scale))