View source: R/expand_matrix.R
expand_matrix | R Documentation |
Expand a matrix with given rownames and colnames
expand_matrix(mat, rownames = NULL, colnames = NULL, fill = 0)
mat |
The matrix to expand |
rownames |
The desired rownames |
colnames |
The desired colnames |
fill |
With what to fill missing data |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.