Logical Functions
๐๏ธ Between
Determines whether a given number falls within a specified range; returns True if the given number does exist in the specified range.
๐๏ธ In
Determines whether a given value exists in a given vector; returns True if the given number does exist in the specified vector.
๐๏ธ IsDate
Returns true if the value is of date type.
๐๏ธ IsEven
Returns True if number is even, or False if number is odd.
๐๏ธ IsFloat
Returns true if the value is of float type or false if not.
๐๏ธ IsInt
Returns true if the value is of integer type or false if not.
๐๏ธ IsNull
Returns True if column contains null value or False if not.
๐๏ธ IsEmpty
Returns True if column contains empty value (does not include nulls) or False if not.
๐๏ธ IsNullOrEmpty
Returns True if column contains empty value including nulls or False if not.
๐๏ธ Logical Functions
๐๏ธ IsOdd
Returns True if number is odd, or False if number is even.
๐๏ธ Switch
Works similar to a switch case statement.
๐๏ธ Like
Checks if the given input matches the search pattern (similar to SQL LIKE predicate).