Displaying 2 results from an estimated 2 matches for "yfreq".
Did you mean:
ifreq
1999 Jul 02
0
Bug in "[.ts" for multivariate ts {Problem with plot.ts, "[" (PR#217)
..., freq = frequency(x))
else y
}
"window.ts" <-
function (x, start, end, frequency, deltat)
{
x <- as.ts(x)
xtsp <- tsp(x)
xfreq <- xtsp[3]
xtime <- time(x)
ts.eps <- .Options$ts.eps
if (missing(frequency) && missing(deltat))
yfreq <- xfreq
else if (missing(deltat))
yfreq <- frequency
else if (missing(frequency))
yfreq <- 1/deltat
if (xfreq%%yfreq < ts.eps) {
thin <- round(xfreq/yfreq)
yfreq <- xfreq/thin
}
else {
thin <- 1
yfreq <-...
1999 Jul 02
1
Bug in "[.ts" for multivariate ts {Problem with plot.ts, "["} (PR#216)
>>>>> On Fri, 02 Jul 1999, Adrian Trapletti <Adrian.Trapletti@wu-wien.ac.at> said:
Adrian> There seems to be a problem with plot.ts (R Version 0.64.2)
> x<-cbind(1:10,2:11)
> x<-as.ts(x)
> plot(x)
Adrian> Error: subscript (20) out of bounds, should be at most 10
This is definitely a bug
--> CC: R-bugs
ALL NOTE : This is *not* new