checks if a number or vector is odd
is.odd(x)
x
the number or vector to check #'
true or false
is.odd(45) is.odd(46) x <- c(1,2,3,4,5, 6, 7) is.odd(x)