Table¶
https://arrow.apache.org/docs/python/generated/pyarrow.Table.html
https://arrow.apache.org/cookbook/py/data.html
get col unique values¶
select columns¶
drop columns¶
select rows¶
select rows based on condition¶
import pyarrow.compute as pc
expr = pc.field('year') <= 2020
table.filter(expr)
table.filter(pc.field('start_date') < pc.field('end_date'))