t.tis {tis} | R Documentation |
Matrix Transpose
Description
Returns the transpose of as.matrix(x)
Usage
## S3 method for class 'tis'
t(x)
Arguments
x |
a |
Value
A matrix, see t
. Note that this is not a
time series.
See Also
Examples
a <- tis(matrix(1:30, 5,6), start = latestMonth())
a
t(a) ##i.e., a[i, j] == t(a)[j, i] for all i,j, and t(a) is NOT a time series
[Package tis version 1.39 Index]