ggolot水平间隙轮廓

时间:2017-07-19 19:54:02

标签: r ggplot2 contour

我一直在尝试使用ggplot2和csv文件绘制等高线图。我无法弄清楚为什么图像上会出现水平间隙。

以下是代码:

library(ggplot2)

plot2 <- ggplot(data=thirtyfour,aes( x = X.m., y = Z.m., z = t_ca.2))
plot2
plot2 + geom_tile(aes(fill = t_ca.2) )+
  scale_fill_continuous(limits=c(0,0.0219),
                        breaks=seq(0,0.0219, by=0.01),
                        low="blue",
                        high="yellow")

enter image description here

1 个答案:

答案 0 :(得分:1)

在geom_tile美学中尝试调整高度参数。

+geom_tile(aes(fill=t_ca.2, height=1)) +...

否则,请提供可重复的示例代码。