Re: [R] adjusting grid on Xaxis ticks

2009-07-30 Thread wapita wapita
Thank you j, its perfect!! Wapita > Date: Fri, 24 Jul 2009 06:41:16 -0400 > Subject: Re: [R] adjusting grid on Xaxis ticks > From: jholt...@gmail.com > To: wap...@hotmail.com > CC: r-help-boun...@r-project.org; r-help@r-project.org > > is this what you want: > > plot

Re: [R] adjusting grid on Xaxis ticks

2009-07-24 Thread jim holtman
is this what you want: plot(0, xlim=as.POSIXct(c('2009-01-01', '2009-12-31')), xaxt='n') x <- seq(as.POSIXct('2009-01-01'), as.POSIXct('2009-12-13'), by='1 month') axis(1, at=x, labels=format(x, "%b")) abline(v=x, lty=2) On Thu, Jul 23, 2009 at 11:37 PM, wapita wapita wrote: > > Hello, > I have