On Thu, Oct 9, 2008 at 5:04 PM, stephen sefick <[EMAIL PROTECTED]> wrote: > I would like to connect the dots based on when they occur in time. Is > there an easy way to do this?
How exactly do you want to connect them? One approach is: qplot(V1, V2, data=f, colour=date) + geom_path() # or maybe qplot(V1, V2, data=f, group=date, colour=site) + geom_path(colour="grey50") Hadley -- http://had.co.nz/ ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.