align_matrix_rows: Align the rows of two matrices

View source: R/align_matrices.R

align_matrix_rowsR 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

align_matrix_cols()

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)


kbroman/lineup2 documentation built on May 16, 2023, 12:18 p.m.