Matrix Transpose

DESCRIPTION:
Returns a matrix which is the transpose of the input. This is a generic function. In particular, there are t methods for various matrix classes in the Matrix library.

USAGE:
t(x)
t.default(x)

REQUIRED ARGUMENTS:
x:
matrix. Missing values (NAs) are allowed.

VALUE:
transpose of x (rows of x are columns of the result, so that t(x)[j, i] is the same as x[i, j]).

SEE ALSO:
aperm for the generalized transpose of arrays. solve for the inverse of a matrix. library(help = Matrix) for a general description of the Matrix library.

EXAMPLES:
amat <- author.count[1:2,]
t(amat)