match.mat | R Documentation |
This function e-arranges the dimension of a matrix based on the dimension of another matrix
match.mat(fill = mat1, dim = mat2, missing = T)
fill |
A matrix that will be used to populate the matrix output |
dim |
A matrix that will be used to determine the dimensions of the matrix output |
missing |
Logical; Shall the cells of the non matching rows/columns set to NA? Default to TRUE but can be set to FALSE to set the cells of the non matching rows/columns to 0 instead. |
Pierre-Alexandre Balland p.balland@uu.nl
location.quotient
## generate a first region - industry matrix set.seed(31) mat1 <- matrix(sample(0:1,20,replace=T), ncol = 4) rownames(mat1) <- c ("R1", "R2", "R3", "R4", "R5") colnames(mat1) <- c ("I1", "I2", "I3", "I4") ## generate a second region - industry matrix set.seed(31) mat2 <- matrix(sample(0:1,16,replace=T), ncol = 4) rownames(mat2) <- c ("R1", "R2", "R3", "R5") colnames(mat2) <- c ("I1", "I2", "I3", "I4") ## run the function match.mat (fill = mat1, dim = mat2) match.mat (fill = mat2, dim = mat1) match.mat (fill = mat2, dim = mat1, missing = F)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.