Is positive decimal
is_positive_decimal.RdTest if is a positive decimal
Examples
is_positive_decimal(0.0001)
#> [1] TRUE
is_positive_decimal(-0.0003)
#> [1] FALSE
is_positive_decimal(0)
#> [1] FALSE
is_positive_decimal(pi)
#> [1] FALSE
is_positive_decimal(-exp(1))
#> [1] FALSE