The row- and column-wise functions take either a matrix or a vector as
input. If a vector, then argument dim. must be specified and fulfill
prod(dim.) == length(x). The result will be identical to the results
obtained when passing matrix(x, nrow = dim.[1L], ncol = dim.[2L]),
but avoids having to temporarily create/allocate a matrix, if only such is
needed only for these calculations.
A vector indicating subset of rows to
operate over. If NULL, no subsetting is done.
A vector indicating subset of columns to
operate over. If NULL, no subsetting is done.
A value to search for.
If TRUE, missing values are
excluded.
An integer vector of
length two specifying the dimension of x, also when not a
matrix. Comment: The reason for this argument
being named with a period at the end is purely technical (we get a run-time
error if we try to name it dim).
Not used.
If TRUE (default), names
attributes of the result are set, otherwise not.
A vector indicating subset of elements to
operate over. If NULL, no subsetting is done.
rowCounts() (colCounts()) returns an
integer vector of length N (K).
count() returns a scalar of type integer if
the count is less than 2^31-1 (= .Machine$integer.max) otherwise
a scalar of type double.
rowAlls
x <- matrix(0:11, nrow = 4, ncol = 3)
x[2:3, 2:3] <- 2:5
x[3, 3] <- NA_integer_
print(x)
#> [,1] [,2] [,3]
#> [1,] 0 4 8
#> [2,] 1 2 4
#> [3,] 2 3 NA
#> [4,] 3 7 11
print(rowCounts(x, value = 2))
#> [1] 0 1 NA 0
## [1] 0 1 NA 0
print(colCounts(x, value = 2))
#> [1] 1 1 NA
## [1] 1 1 NA
print(colCounts(x, value = NA_integer_))
#> [1] 0 0 1
## [1] 0 0 1
print(rowCounts(x, value = 2, na.rm = TRUE))
#> [1] 0 1 1 0
## [1] 0 1 1 0
print(colCounts(x, value = 2, na.rm = TRUE))
#> [1] 1 1 0
## [1] 1 1 0
print(rowAnys(x, value = 2))
#> [1] FALSE TRUE TRUE FALSE
## [1] FALSE TRUE TRUE FALSE
print(rowAnys(x, value = NA_integer_))
#> [1] FALSE FALSE TRUE FALSE
## [1] FALSE FALSE TRUE FALSE
print(colAnys(x, value = 2))
#> [1] TRUE TRUE NA
## [1] TRUE TRUE NA
print(colAnys(x, value = 2, na.rm = TRUE))
#> [1] TRUE TRUE FALSE
## [1] TRUE TRUE FALSE
print(colAlls(x, value = 2))
#> [1] FALSE FALSE FALSE
## [1] FALSE FALSE FALSE