t.tis: Matrix Transpose

Description Usage Arguments Value See Also Examples

View source: R/tis.R

Description

Returns the transpose of as.matrix(x)

Usage

1
2
## S3 method for class 'tis'
t(x)

Arguments

x

a tis object. If x is univariate, it will be treated as if it were a single-column matrix, so it's transpose will be a single-row matrix.

Value

A matrix, see t. Note that this is not a time series.

See Also

t, tis

Examples

1
2
3
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

tis documentation built on Sept. 29, 2021, 1:06 a.m.