CHNOSZ (version 1.3.2)

util.list: Functions to Work with Lists

Description

Combine lists or perform arithmetic operations on elements of lists.

Usage

which.pmax(elts, na.rm = FALSE, pmin = FALSE)

Arguments

elts

list, numeric vectors for which to find maximum values (in parallel) (which.pmax).

na.rm

logical, remove missing values?

pmin

logical, find minimum values instead of maximum ones?

Details

which.pmax takes a list of equal-length numeric vectors (or objects that can be coerced to numeric) in elts and returns the index of the vector holding the maximum value at each position. If na.rm is TRUE, values of NA are removed; if pmin is TRUE the function finds locations of the minimum values instead.