Displaying 1 result from an estimated 1 matches for "196211".
Did you mean:
1962,11
2003 May 18
1
TS data frames
hi chaps: apologies, more naive beginner's questions. my data sets
contain multiple time series and look like
date x y
196211 12 1
196212 4 2
196301 44 5
so dataset <- read.table("data.dat", header=T); works well enough.
tsdataset<- ts(dataset, freq=12, start=c(1962,11)) also seems to work.
summary(tsdataset) and print(tsdataset) show that this operation did
what I intended.
* Alas, ts...