gpt4 book ai didi

r - 如何去除R包 “levelplot”中 “rasterVis”中的框框

转载 作者:行者123 更新时间:2023-12-01 08:29:18 27 4
gpt4 key购买 nike

我想删除栅格数据集的“levelplot”图中的框框。不知道该怎么做。

library(raster)
library(rasterVis)

f <- system.file("external/test.grd", package="raster")
r <- raster(f)
s <- stack(r, r+500, r-500)
levelplot(s, contour=TRUE)
levelplot(s)
levelplot(s,box=FALSE,axes=FALSE) # It doesn't work.

最佳答案

[编辑:添加了数字]
?wireframe 的最后一个示例中描述了您要实现的目标

levelplot(s, contour = TRUE, par.settings = list(axis.line = list(col = "transparent")), 
scales = list(col = "black"))`

如果要删除 strip 背景和颜色:
levelplot(s, contour=TRUE, par.settings = list(axis.line = list(col = "transparent"), 
strip.background = list(col = 'transparent'),
strip.border = list(col = 'transparent')),
scales = list(col = "black"))`

关于r - 如何去除R包 “levelplot”中 “rasterVis”中的框框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24172571/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com