1

我正在使用 levelplot 绘制矩阵。我需要更改 x 和 y 标签。当我使用以下代码时,情节看起来不错。然而,x 和 y 标签是从 133 到 139,而不是 133..139 133...139。任何人都可以帮我解决它吗?(而不是我正在绘制的巨大矩阵,我将给出一个样本矩阵)

library(lattice)
library(RColorBrewer)
m <- matrix(c(0,1,1,2,0,2,1,1,0),6,6)
b <- c(seq(133,139),seq(133,139))
xy.labels <- b
cols <- colorRampPalette(brewer.pal(6, "Spectral"))    
print(levelplot(m, scales = list(labels = xy.labels), col.regions = cols))
4

1 回答 1

1

我认为您可以简单地使用xlabandylab选项。

print(levelplot(m, scales = list(labels = xy.labels), col.regions = cols,
            xlab='X Label', ylab='Y Label'))

其他标签可以更改如下

B= c('a','b','c','d','e','f','g', 'a','b','c','d','e','f','g')
XY.labels=B
cols <- colorRampPalette(brewer.pal(6, "Spectral"))    
print(levelplot(m, scales = list(labels = XY.labels), col.regions = cols,
            xlab='X Label', ylab='Y Label'))
于 2016-03-26T22:24:34.033 回答