Re: [R] simple ts() object question

2010-09-05 Thread StatWM
Thanks for the fast answers! -- View this message in context: http://r.789695.n4.nabble.com/simple-ts-object-question-tp2527085p2527222.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.eth

Re: [R] simple ts() object question

2010-09-04 Thread Joshua Wiley
Hi, There is probably an easier way, but this will work: ta[time(ta)==1965] With your data, I get: > ta[time(ta)==1965] [1] 6 HTH, Josh On Sat, Sep 4, 2010 at 9:08 PM, StatWM wrote: > > Dear Community, > > say, I have an annual ts() object sampled from 1960 to 1969 like: > > ta<-ts(1:10, s

Re: [R] simple ts() object question

2010-09-04 Thread Gabor Grothendieck
On Sun, Sep 5, 2010 at 12:08 AM, StatWM wrote: > > Dear Community, > > say, I have an annual ts() object sampled from 1960 to 1969 like: > > ta<-ts(1:10, start=1960, frequency=1) > > How can I extract the value from the year 1965? > > I mean, not by: > > ta[6] > > but by something like: > > ta[196

[R] simple ts() object question

2010-09-04 Thread StatWM
Dear Community, say, I have an annual ts() object sampled from 1960 to 1969 like: ta<-ts(1:10, start=1960, frequency=1) How can I extract the value from the year 1965? I mean, not by: ta[6] but by something like: ta[1965] where I'm directly referring to the year of the observation? Thank