在一个图中结合使用geom_point和geom_line

3

我有两个类似于这样的数据框:

date <- c("2014-07-06", "2014-07-06","2014-07-06","2014-07-07", "2014-07-07","2014-07-07","2014-07-08","2014-07-08","2014-07-08")
TIME <- c("01:01:01", "10:02:02", "18:03:03","01:01:01", "10:02:02", "18:03:03","01:01:01", "10:02:02", "18:03:03")
depth <- c(12, 23, 4, 15, 22, 34, 22, 12, 5)
temp <- c(14, 10, 16, 13, 10, 9, 10, 14, 16)
depth.temp <- data.frame(date, TIME, depth, temp)
depth.temp$asDate<-as.Date(depth.temp$date)

date <- c("2014-07-06", "2014-07-07","2014-07-08") 
meandepth <- c(13, 16, 9) 
cv <- c(25, 9, 20) 
depth.cv <- data.frame(date, meandepth, cv)
depth.cv$asDate<-as.Date(depth.cv$date)

从第一个创建的图表开始,我已经创建了以下图表:

library(ggplot2)
p1 <- qplot(asDate, depth, data=depth.temp, colour=temp, size = I(5), alpha = I(0.3))+ scale_y_reverse()
p1 + scale_colour_gradientn(colours = rev(rainbow(12)))

从第二个图表可以看出:

p2 <- ggplot(depth.cv, aes(x=asDate, y=meandepth))+ scale_y_reverse()
p2 + geom_line(aes(size = cv))

我希望将两个图表合并为一个,其中点在后面,线在前面,有什么建议?请注意,这些点和线不是来自同一个数据框架。


可能是重复的问题:如何将两个图形(ggplot)合并成一个图形? - figurine
这很相似,但在那个问题中,点和线都是从同一个数据框创建的,而我使用两个单独的数据框来表示点和线。 - Johan Leander
将您的代码按照链接答案中的类似结构进行排列,并确保为每个绘图定义使用的数据框,它就可以正常工作了。 - figurine
2个回答

7
您可以将data添加到任何geom_中,而不受主要ggplot调用中使用的内容的影响。为此,我建议跳过主要ggplot调用中的任何数据或美学映射分配,并在每个相应的geom_中执行它们。
library(scales)

gg <- ggplot()
gg <- gg + geom_point(data=depth.temp, aes(x=asDate, y=depth, color=temp), size=5, alpha=0.3)
gg <- gg + geom_line(data=depth.cv, aes(x=asDate, y=meandepth, size=cv))
gg <- gg + scale_color_gradientn(colours=rev(rainbow(12)))
gg <- gg + scale_x_date(labels=date_format("%Y-%m-%d"))
gg <- gg + scale_y_reverse()
gg <- gg + labs(x=NULL, y="Depth")
gg <- gg + theme_bw()
gg

enter image description here


2

在我的情况下,为了显示线图,我必须像这样设置 aes:

aes(x=asDate, y=meandepth, group=1)

在 geom_line 图中。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接