This doesn't seem to work:
> d <- rnorm(2*53)
> ds <- ts(d, frequency=53, start=c(2000,10))
> dswin <- window(ds, start=c(2001,1), end=c(2001,10), frequency=1)
> dswin
Time Series:
Start = 2001
End = 2001
Frequency = 1
[1] 1.779409
> dswin <- window(ds, start=c(2001,1), end=c(2001,10))
> dswin
Time Series:
Start = c(2001, 1)
End = c(2001, 10)
Frequency = 53
[1] 1.7794090 0.6916779 -0.6641813 -0.7426889 -0.5584049 -0.2312959
[7] -0.0183454 -1.0026301 0.4534920 0.6058198
>
The problem is that when the frequency is specified only one value shows up
in the window. When no frequency is specified I get all 10 values but now
the time series has a frequency that I don't want.
Comments?
Kevin
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.