View source: R/doby_utilities.R
which.maxn | R Documentation |
Determines the locations, i.e., indices of the n largest or n smallest elements of a numeric vector.
which.maxn(x, n = 1)
x |
numeric vector |
n |
integer >= 1 |
A vector of length at most n with the indices of the n largest / smaller elements. NAs are discarded and that can cause the vector to be smaller than n.
Søren Højsgaard, sorenh@math.aau.dk
which.max
, which.min
x <- c(1:4, 0:5, 11, NA, NA)
ii <- which.minn(x, 5)
x <- c(1, rep(NA,10), 2)
ii <- which.minn(x, 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.