View source: R/is_one_double.R
is_one_double | R Documentation |
Determines if the argument is a double
is_one_double(x)
x |
the object to be determined of if it is one double |
TRUE if the argument is one floating point value, FALSE otherwise
Richèl J.C. Bilderbeek
check_empty_beautier_folder()
# TRUE
is_one_double(314)
is_one_double(0)
is_one_double(-314)
is_one_double(3.14)
# FALSE
is_one_double(NULL)
is_one_double(NA)
is_one_double(Inf)
is_one_double("nonsense")
is_one_double(is_one_double)
is_one_double(c())
is_one_double(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.