我正在尝试创建等高线图。我想在Y轴上有深度,在X轴上有时间。现在这是我正在使用的代码:
par <- ggplot(up_PAR, aes(Time.hour.of.the.day., Depth, z = PAR))
parplot <- par +
stat_contour(bins=20, aes(colour=..level..))+
scale_colour_gradient(limits=c(0.000842, 0.00000000195),low="black", high="black") +
scale_y_reverse()+
theme_bw()+
theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank())+
xlab("Hour of the Day")+
ylab("Depth(m)")+
ggtitle("Downwelling PAR (photons/m2/s), January 22nd")
direct.label(parplot)
但是,我想将深度轴延伸到0-30米。我的数据集达到了175米,但我只对显示水柱的顶部感兴趣。
我知道我可以使用scale_y_continuous(limit=c(0,30))
,但由于我已经颠倒了我的轴,并希望保持这种方式,我也无法设置轴的限制。
答案 0 :(得分:49)
正如@aosmith已经指出的那样,只需使用lim
scale_y_reverse
library(ggplot2)
set.seed(15)
ggplot(data.frame(x=sort(runif(20, 0, 20)), y=cumsum(runif(20,0 ,2))), aes(x,y)) +
geom_point() +
scale_y_reverse( lim=c(10,0))