如何将水平图的原点旋转到左上角?

时间:2014-07-31 18:07:35

标签: r levelplot

默认情况下,R中的水平图的左下角有原点;是否有一种简单的方法可以让它从左上角开始呢?

像这样: example

1 个答案:

答案 0 :(得分:0)

通过转置我的数据框,然后翻转列来找出一个不优雅的解决方案

df <- t(df)
df <- df[,seq(from=ncols(df),to=1,by=-1)] #reversing the columns
rgb.palette <- colorRampPalette(c("yellow","red"),space="rgb")
levelplot(data.matrix(df),aspect="iso",scales=list(x=list(rot=45,cex=.7,alternating=2),y=list(cex=.7)),main="title",xlab="",ylab="",col.regions=rgb.palette(300),cuts=500,at=seq(0,3,1)) #alternating=2 flips x axis labels up to top