nth {tidyfst} | R Documentation |
Extract the nth value from a vector
Description
nth
get the value from a vector with its position,
while maxth
and minth
get the nth highest or lowest value
from the vector.
Usage
nth(v, n = 1)
maxth(v, n = 1)
minth(v, n = 1)
Arguments
v |
A vector |
n |
For |
Value
A single value.
References
https://stackoverflow.com/questions/2453326/fastest-way-to-find-second-third-highest-lowest-value-in-vector-or-column/66367996#66367996
Examples
x = 1:10
nth(x, 1)
nth(x, 5)
nth(x, -2)
y = c(10,3,4,5,2,1,6,9,7,8)
maxth(y,3)
minth(y,3)
[Package tidyfst version 1.7.9 Index]