> Antonio, Fabio Di Narzo <[EMAIL PROTECTED]>
> on Sat, 24 Nov 2007 12:35:25 +0100 writes:
> Hi all. Currently, if you try:
>> lag.plot(1:10)
> you get superposed labels '1' and '10'. Things go worse in
> more extreme cases:
> x <- ts(1:10)
> x1 <-
Hi all.
Currently, if you try:
> lag.plot(1:10)
you get superposed labels '1' and '10'. Things go worse in more extreme cases:
x <- ts(1:10)
x1 <- lag(x, 4)
plot(x1, x)
This is due to a mistake in plot.ts. My suggestion is the following
really minimal patch to plot.ts:
@@ -530,7 +530,7 @@ plot