Combine lists or perform arithmetic operations on elements of lists.
which.pmax(elts, na.rm = FALSE, pmin = FALSE)list, numeric vectors for which to find maximum values (in parallel) (which.pmax).
logical, remove missing values?
logical, find minimum values instead of maximum ones?
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.