Skip to content
Prev 82202 / 398502 Next

plotting question

Ed Wang wrote:
What about making the two time series into an mts (multiple time series)
object, with
my.mts <-  cbind(ts.1, ts.2)   or maybe
my.ts  <-  ts.union(ts.1, ts.2)    This latest command does not assume a 
commom    time base.   Then
plot(my.ts,plot.type="single", col=c("red", "blue"))

Kjetil