colstore.col¶
- colstore.col(name)[source]¶
A lazy reference to a column, for building filter expressions.
col("pt") > 30and combinations ((col("pt") > 30) & col("ok"),col("eta").isin([0, 1])) build a lazy predicate that reads nothing until applied withds[expr]/ColStoreReader.where()/ passed toColStoreReader.query(). Combine conditions with& | ~(notand/or/not), and use.isin(...)for membership.- Parameters:
name (str)
- Return type:
_Expr