[R] Plots using POSIX

2003-06-26 Thread Shawn Way
Is there a reason that the bottom axis changes color when POSIX data is used in plot function? For example: timedata - c(2/3/2003,3/4/2003,5/4/2003) timedata2 - strptime(timedata,format=%m/%d/%Y) numdata - c(2,3,4) plot(as.POSIXct(timedata2),numdata,col=red,type=o) As compared to:

Re: [R] Plots using POSIX

2003-06-26 Thread Prof Brian Ripley
On Thu, 26 Jun 2003, Shawn Way wrote: Is there a reason that the bottom axis changes color when POSIX data is used in plot function? It's not the same plot function, that's why. For example: timedata - c(2/3/2003,3/4/2003,5/4/2003) timedata2 - strptime(timedata,format=%m/%d/%Y)

Re: [R] Plots using POSIX

2003-06-26 Thread Duncan Murdoch
On Thu, 26 Jun 2003 07:59:00 -0500, Shawn Way [EMAIL PROTECTED] wrote : Is there a reason that the bottom axis changes color when POSIX data is used in plot function? It's the old problem of too much of ... being passed onwards. Here's the current definition: plot.POSIXct - function (x, y,

Re: [R] Plots using POSIX

2003-06-26 Thread Prof Brian Ripley
On Thu, 26 Jun 2003, Duncan Murdoch wrote: On Thu, 26 Jun 2003 07:59:00 -0500, Shawn Way [EMAIL PROTECTED] wrote : Is there a reason that the bottom axis changes color when POSIX data is used in plot function? It's the old problem of too much of ... being passed onwards. Here's the