Learn R Programming

proxyC (version 0.5.0)

colZeros: Number of zeros in columns and rows of large matrices

Description

Produces the same result as applying sum(x == 0) to each row or column.

Usage

colZeros(x)

rowZeros(x)

Arguments

x

a base::matrix or Matrix::Matrix object.

Examples

Run this code
mt <- Matrix::rsparsematrix(100, 100, 0.01)
colZeros(mt)
apply(mt, 2, function(x) sum(x == 0)) # the same

Run the code above in your browser using DataLab