[R] Help with interpolation of time series

2010-06-17 Thread Nicholas R Frazier
I'm quite new to R. I have a time series of annual state population estimates from census.gov, and I'd like to get a time series of monthly estimates, by a nonlinear interpolation. How can I do this in R? Thanks! [[alternative HTML version deleted]]

[R] Change the frequency of a ts?

2010-07-03 Thread Nicholas R Frazier
I'm trying to convert a column of a table into a ts object. The data is monthly, so I want the ts frequency to be 12. I did this ... > filings.ts = as.ts(Filings.100K, frequency=12) > filings.ts Time Series: Start = 1 End = 311 Frequency = 1 [1] 246.9336 305.6789 ... ... > tsp(filings.ts) [1

Re: [R] Change the frequency of a ts?

2010-07-03 Thread Nicholas R Frazier
e wrote: > Am 03.07.2010 13:55, schrieb Nicholas R Frazier: > > I'm trying to convert a column of a table into a ts object. The data is > > monthly, so I want the ts frequency to be 12. > > > > I did this ... > > > >> filings.ts = as.ts(Filings.