改变R中的levelplot的宽度

时间:2014-06-23 06:04:03

标签: r plot levelplot

我使用5行50列的数据集在R中创建了一个levelplot()。

rgb.palette <- colorRampPalette(c("green", "red"), space = "Lab")
levelplot(mat, col.regions=rgb.palette, xlab = "Risk Level", ylab = "Zones", main = "Risk  Profile")

结果如下所示:enter image description here

有人可以建议,如何水平扩展图表并清楚地看到x轴标签?

2 个答案:

答案 0 :(得分:3)

Bu默认,levelplot()使用等长方面,因此x中的一个单位等于y中的一个单位。您可以使用

更改默认值
levelplot(mat, col.regions=rgb.palette, 
    xlab = "Risk Level", ylab = "Zones", main = "Risk Profile", 
    aspect="fill")

答案 1 :(得分:0)

我会使用转置矩阵

tmat <- t(mat)
levelplot(tmat, col.regions=rgb.palette, xlab = "Risk Level", ylab = "Zones", main = "Risk  Profile")