compare_byname | R Documentation |
Compares matrix entries to a value,
returning a matrix of same size as a
containing TRUE
or FALSE
values
as the result of applying compare_fun
and val
to all entries in a
.
compare_byname(a, compare_fun = c("==", "!=", "<", "<=", ">=", ">"), val = 0)
a |
a matrix or list of matrices whose values are to be counted according to |
compare_fun |
the comparison function, one of " |
val |
a single value against which entries in matrix |
a logical matrix of same size as a
containing TRUE
where the criterion is met,
FALSE
otherwise
m <- matrix(c(0, 1, 2, 3, 4, 0), nrow = 3, ncol = 2)
compare_byname(m, "<", 3)
compare_byname(list(m,m), "<", 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.