Addition of Functional Time Series
A method that lets you perform functional time series (fts
) addition and scalar addition.
## S3 method for class 'fts' Y1 + Y2
an object of class fts
.
## Not run: require(fda) require(Rfssa) data(Callcenter) # Read data u=seq(0,1,length.out=240) # Define domain of functional data d=12 # number of basis elements basis=create.bspline.basis(rangeval = c(0,1),nbasis = d) # create basis object smooth.calls=smooth.basis(u, matrix(nrow=240,ncol=365,Callcenter$calls), basis) Y=fts(smooth.calls$fd) # create functional time series plot(Y) Yplus=Y+Y # add the functional time series to itself plot(Yplus) Yplus2=Y+2 # add 2 to every term in the functional time series plot(Yplus2) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.