Return the value (or the element with the value) closest to zero.
Return the value (or the element with the value) closest to zero.
findAbsMin(x, element = FALSE)
x |
A numeric vector. |
element |
Logical: whether or not to return the value (FALSE, default) or the index (TRUE). |
The value or index of the element closest to zero (absolute minimum).
Jacolien van Rij
Other Utility functions:
find_n_neighbors(),
firstLetterCap(),
getArrowPos(),
getDec(),
getRange(),
getRatioCoords(),
get_palette(),
group_sort(),
inch2coords(),
isColor(),
list2str(),
move_n_point(),
orderBoxplot(),
se(),
sortGroups()
(test <- seq(-25,25, by=3)) min(test[test>0]) max(test[test<0]) min(abs(test)) findAbsMin(test)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.