align_matrix_rows {lineup2} | R Documentation |
Align the rows of two matrices
Description
Align the rows of two matrices using their row names, omitting rows that are not present in both.
Usage
align_matrix_rows(x, y)
Arguments
x |
A matrix |
y |
Another matrix |
Value
A list with the input x
and y
matrices, with the rows
aligned using their names. Rows not in both matrices are
omitted.
See Also
Examples
# using the provided lineup2ex data (a list of two matrices)
# reduces to the common rows and puts the rows in the same order
# (using the row names)
aligned <- align_matrix_rows(lineup2ex$gastroc, lineup2ex$islet)
[Package lineup2 version 0.6 Index]