Description Usage Arguments Value Examples
This is used for combining a list of sparce matrices into a large Matrix.
This is a worker function for textmineR
and generally not made to be
used by users. However, the function is provided for custom functions.
1 | RecursiveRbind(matrix_list)
|
matrix_list |
A list, each element containing a matrix of class |
Returns a matrix of class dgCMatrix
.
1 2 3 4 5 | a_matrix <- Matrix::Matrix(0, nrow=10, ncol=10)
a_list <- list(a_matrix, a_matrix, a_matrix, a_matrix, a_matrix)
result <- RecursiveRbind(a_list)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.