我正在尝试添加一条包含较少点的额外行。我努力了:
library(ggplot2)
df <- data.frame(x=c(1:50),y=c(1:50)*2+5)
df2 <- data.frame(x=c(20,30,40),y=c(40,60,80))
plot1 <- ggplot(df , aes(x=x, y=y)) + geom_line()
plot2 <- plot1+ geom_line( aes(x=df2$x, y=df2$y))
plot2
但这不起作用。