Learn R Programming

dynutils (version 1.0.11)

expand_matrix: Expand a matrix with given rownames and colnames

Description

Expand a matrix with given rownames and colnames

Usage

expand_matrix(mat, rownames = NULL, colnames = NULL, fill = 0)

Arguments

mat

The matrix to expand

rownames

The desired rownames

colnames

The desired colnames

fill

With what to fill missing data

Examples

Run this code
x <- matrix(runif(12), ncol = 4, dimnames = list(c("a", "c", "d"), c("D", "F", "H", "I")))
expand_matrix(x, letters[1:5], LETTERS[1:10], fill = 0)

Run the code above in your browser using DataLab