I want to plot two sets of data and show the data, the smoother and the confidence interval for each set but both sets in one graph.
plotdata <- data.frame(x=1:10, y1=runif(10, min=0, max=10), y2=runif(10, min=10, max=20))
qplot(x, y1, data=plotdata, geom=c("point", "smooth"), method="rlm")
qplot(x, y2, data=plotdata, geom=c("point", "smooth"), method="rlm")
is there a way to combine these two qplots or to extract the qplot information and plot it with ggplot? All solutions I found so far are only for single lines, points etc but not for the confidence intervals. Thanks!
You can have the same plot with ggplot
E.g: the first plot:
and you can play from now on with the more flexible
ggplot