vectorizeMatrix | R Documentation |
A convenient function to turn a matrix into a vector of non-redundant components. If the matrix is non-symmetric, returns a vector containing all entries of the matrix. If the matrix is symmetric, only returns the upper triangle and optionally the diagonal.
vectorizeMatrix(M, diag = FALSE)
M |
the matrix or data frame to be vectorized. |
diag |
logical: should the diagonal be included in the output? |
A vector containing the non-redundant entries of the input matrix.
Steve Horvath
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.