sparse_Means | R Documentation |
RowMens and colMeans for a sparse matrix
sparse_Means(sparse_matrix, rowMeans = FALSE)
sparse_matrix |
a sparse matrix |
rowMeans |
either TRUE or FALSE. If TRUE then the row-means will be calculated, otherwise the column-means |
a vector with either the row- or the column-sums of the matrix
library(textTinyR)
tmp = matrix(sample(0:1, 100, replace = TRUE), 10, 10)
sp_mat = dense_2sparse(tmp)
spsm = sparse_Means(sp_mat, rowMeans = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.