nnzeroGroups | R Documentation |
Utility function to compute number of zeros-per-feature within group
nnzeroGroups(X, y, MARGIN = 2)
## S3 method for class 'dgCMatrix'
nnzeroGroups(X, y, MARGIN = 2)
## S3 method for class 'matrix'
nnzeroGroups(X, y, MARGIN = 2)
X |
matrix |
y |
group labels |
MARGIN |
whether observations are rows (=2) or columns (=1) |
Matrix of groups by features
data(exprs)
data(y)
nnz_res <- nnzeroGroups(exprs, y, 1)
nnz_res <- nnzeroGroups(t(exprs), y, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.