Evaluates if the argument is a single number
Arguments
- x
a variable to evaluate
Value
TRUE
if is a single number, FALSE
otherwise
Examples
is_single_number(3) #TRUE
#> [1] TRUE
is_single_number(c(3,3,3)) #FALSE
#> [1] FALSE
is_single_number(list(a=3)) #FALSE
#> [1] FALSE
is_single_number("3") #FALSE
#> [1] FALSE