Expressions¶
Vortex expressions represent simple filtering conditions on the rows of a Vortex array. For example, the following expression represents the set of rows for which the age column lies between 23 and 55:
>>> import vortex.expr
>>> age = vortex.expr.column("age")
>>> (23 > age) & (age < 55)
Create an expression that refers to a column by its name. |
|
An expression describes how to filter rows when reading an array from a file. |