tensr (version 1.0.1)

topK: Top K elements of a vector.

Description

Identify top K elements of a vector.

Usage

topK(x, K = 1, ignoreties = TRUE)

Arguments

x

The vector.

K

The number of indices to return.

ignoreties

If FALSE, will return a vector of the indices whose elements are greater than or equal to the Kth largest element, resulting in a vector possibly of length greater than K in the case of ties.

Details

This function returns the indices corresponding to the top elements of a vector.

Examples

Run this code
# NOT RUN {
x <- c(3, 6, 2, 4, 1)
tensr:::topK(x, 3)
# }

Run the code above in your browser using DataCamp Workspace