tester (version 0.1.7)

is_single_positive: Is single positive number

Description

Tests if an object is a single positive number

Usage

is_single_positive(x)

Arguments

x

an R object

See Also

is_single, is_single_negative

Examples

Run this code
is_single_positive(1.0)  # TRUE
is_single_positive(c(1.0,2))  # FALSE
is_single_positive(-1.0)  # FALSE
is_single_positive(0)  # FALSE
is_single_positive(NA)  # FALSE

Run the code above in your browser using DataLab