coordOfFilt: get coordinates of values/points in matrix according to...

View source: R/coordOfFilt.R

coordOfFiltR Documentation

get coordinates of values/points in matrix according to filtering condition

Description

Get coordinates of values/points in matrix according to filtering condition

Usage

coordOfFilt(mat, cond, sortByRows = FALSE, silent = FALSE, callFrom = NULL)

Arguments

mat

(matrix or data.frame) matrix or data.frame

cond

(logical or integer) condition/test to see which values of mat fulfull test, or integer of index passing

sortByRows

(logical) optional sorting of results by row-index

silent

(logical) suppress messages

callFrom

(character) allow easier tracking of message(s) produced

Value

matrix columns 'row' and 'col'

See Also

which

Examples

set.seed(2021); ma1 <- matrix(sample.int(n=40,size=27,replace=TRUE), ncol=9)
## let's test which values are >37
which(ma1 >37)      # doesn't tell which row & col
coordOfFilt(ma1, ma1 >37)


wrMisc documentation built on Nov. 17, 2023, 5:09 p.m.