Hi, Is there a way to evaluate mathematical expressions against columns of a pyarrow table which is in memory already similar to how projections work for dataset scanners?
The goal is to have specify a bunch of strings like sum(a * b)/sum(a), or avg(a[:10]) etc. Convert these into expressions and run against the table. Thanks
