is_one_int | R Documentation |
Determines if the argument is a whole number
is_one_int(x, tolerance = .Machine$double.eps^0.5)
x |
the object to be determined of if it is one integer |
tolerance |
tolerance to rounding errors |
TRUE if the argument is one int, FALSE otherwise
Richèl J.C. Bilderbeek
check_empty_beautier_folder()
# TRUE
is_one_int(314)
is_one_int(0)
is_one_int(-314)
# FALSE
is_one_int(3.14)
is_one_int(NULL)
is_one_int(NA)
is_one_int(Inf)
is_one_int("nonsense")
is_one_int(c())
is_one_int(c(1, 2))
check_empty_beautier_folder()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.