Skip to content
Prev 155050 / 398506 Next

(with subject)

Is this what you want?

 library(ggplot2)
rawData <- data.frame(Date = c("2008-03-01", "2008-03-21", "2008-03-23",
"2008-04-08", "2008-04-20", "2008-05-10", "2008-06-20"), y = c(4, 6,8, 5, 7, 2 ,1))
 rawData$Date <- as.Date(rawData$Date)
 qplot(Date,y,data=rawData,geom="line",xlim=c(as.Date("2008-1-1"),as.Date("2008-12-1")))
--- On Thu, 9/4/08, Dr Eberhard W Lisse <el at lisse.na> wrote: