ourMELONS/R/find.R
Waldir Leoncio fca9caa731 Restyled files
Ran through styler::style_dir() in the R and tests directories in preparation for #23.
2021-11-10 14:25:50 +01:00

15 lines
349 B
R

#' @title Find indices and values of nonzero elements
#' @description Emulates behavior of `find`
#' @param x object or logic operation on an object
#' @param sort sort output?
find <- function(x, sort = TRUE) {
if (is.logical(x)) {
out <- which(x)
} else {
out <- which(x > 0)
}
if (sort) {
out <- sort(out)
}
return(out)
}