is_positive.Rd
Return TRUE if the value is positive.
is_positive(x)
A numeric vector
A boolean vector with the return from the condition check.
is_positive(4) #> [1] TRUE is_positive(-4) #> [1] FALSE