| cbind.tis {tis} | R Documentation |
Combine Series Into a Multivariate (Matrix) Time Indexed Series
Description
This is cbind for tis objects. It binds several
ts and tis objects together into a single matrix time
indexed series.
Usage
## S3 method for class 'tis'
cbind(..., union = F)
Arguments
... |
any number of univariate or multivariate |
union |
a logical. If |
Details
If union is TRUE and the series in ... do not all
start and end on the same time index, the missing observations are
filled with NA.
The column names of the returned series are determined as follows:
If an argument was given a name in the call, the corresponding column has that name. If the argument was itself a matrix with column names, those will be used, otherwise the argument's name is expanded with digits denoting its respective columns.
Value
a multivariate tis object.
Note
Class "ts" has it's own cbind method which knows nothing
about tis objects. R generic functions like cbind
dispatch on the class of their first argument, so if you want to
combine tis and ts objects by calling the generic
cbind, be sure that the first argument is a tis, not a
ts. You can always ensure this is the case by wrapping the
first argument in ... in as.tis().