0
在繪製具有灰度分佈的分類柵格地圖時,例如Josh O'Brien的答案Legend of a raster map with categorical data, 傳說中的高度總是變短。有沒有辦法將圖例高度調整爲與圖形窗口相同的高度?柵格分類光柵中的短傳奇高度
在繪製具有灰度分佈的分類柵格地圖時,例如Josh O'Brien的答案Legend of a raster map with categorical data, 傳說中的高度總是變短。有沒有辦法將圖例高度調整爲與圖形窗口相同的高度?柵格分類光柵中的短傳奇高度
您可以通過將colorkey=list(height=1)
傳遞給levelplot函數來設置圖例高度。
library(raster)
library(rasterVis)
## Example data
r <- raster(ncol=4, nrow=2)
r[] <- sample(1:4, size=ncell(r), replace=TRUE)
r <- as.factor(r)
## Add a landcover column to the Raster Attribute Table
rat <- levels(r)[[1]]
rat[["landcover"]] <- c("land","ocean/lake", "rivers","water bodies")
levels(r) <- rat
## Plot
levelplot(r, colorkey=list(height=1), col.regions=rev(terrain.colors(4)), xlab="", ylab="")
完美!非常感謝! – Ktelo