Description Usage Arguments Details Value Examples
Written in C++, this function tends to run faster than
which.min
for large integer vectors.
1 | which_min_iv(x)
|
x |
Integer vector. |
For optimal speed, choose the version of this function that matches the
class of your x
:
which_min_nv
for numeric vector.
which_min_iv
for integer vector.
which_min_nm
for numeric matrix.
which_min_im
for integer matrix.
Integer value.
1 2 3 4 5 6 7 8 9 | # For long vectors, which_min_iv is faster than which.min
x <- rpois(10000, lambda = 15)
which.min(x) == which_min_iv(x)
benchmark(which.min(x), which_min_iv(x), replications = 5000)
# For shorter vectors, which_min_iv is slower than which.min
x <- rpois(100, lambda = 15)
which.min(x) == which_min_iv(x)
benchmark(which.min(x), which_min_iv(x), replications = 20000)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.