Is it possible to overlay two plots with gridExtra (or other package)?
I want to rescale one plot and overlay it to a second one (specifying rescaling and coordinates)
require(ggplot2)
require(gridExtra)
df <- data.frame(value=rnorm(10), date=1:10)
p1 <- ggplot(data.frame(df), aes(value,date)) + geom_line()
p2 <- ggplot(data.frame(df), aes(value,date)) + geom_point()
to obtain something like this