powered by
check whether numbers of a vector are positive
is.positive(x)
true or false
the number or vector to check #'
is.positive(-3) # this will return FALSE is.positive(2) # this will return TRUE x <- c(-1, -2, 3.02, 4, -5.2, 6, -7) is.positive(x)
Run the code above in your browser using DataLab