Re: [R] ts.plot and x axes customization

2012-02-29 Thread ilai
On Wed, Feb 29, 2012 at 1:56 AM, Jochem Schuster wrote: > Hello, > > thank you very much for your answer. In the following, I will provide my > recent code and try to explain again: > > series1 = ts(x$france start=c(2000,1), frequency=4) > series2 = ts(x$germany, start=c(2000,1), frequency=4) > ti

Re: [R] ts.plot and x axes customization

2012-02-28 Thread ilai
On Tue, Feb 28, 2012 at 12:57 PM, Jochem Schuster wrote: >   ts.plot(series1, series2, main=main, xlab=xlab, ylab=ylab, col=c("green", >   "red", "blue"), lwd=2)   What I've tried before is deleting the X axes via gpars=list(xaxt="n") in >   the ts.plot-code. But after that I was not aible to a

Re: [R] ts.plot

2008-07-06 Thread Gabor Grothendieck
On Sun, Jul 6, 2008 at 3:36 PM, threshold <[EMAIL PROTECTED]> wrote: > > Hi, my question concerns the following (guess) easy case. I have daily data > over 5-year period say > 199017.24 > 199018.19 > 199019.22 > . > . > 199120.11 > 199120.26 > 199122.2 > . > . > 199420.0

Re: [R] ts.plot() labeling x-axis

2008-04-19 Thread Jeff Ryan
Have a look at chartSeries in the quantmod package. It can handle financial style series formatting quite well. Make sure to get the newest version of xts and quantmod from CRAN - as there have been recent updates to the charting facility. Some documentation can be found at http://www.quantmod.co