36 ms·
you have map_elements in polars which does exactly this. https://docs.pola.rs/api/python/dev/reference/expressions/api/polars.Expr.map_elements.html https://do
by vegabook 8mo ago
you have map_elements in polars which does exactly this.
https://docs.pola.rs/api/python/dev/reference/expressions/api/polars.Expr.map_elements.html https://docs.pola.rs/api/python/dev/reference/expressions/ap...
You can also iter_rows into a lambda if you really want to.
https://docs.pola.rs/api/python/stable/reference/dataframe/api/polars.DataFrame.iter_rows.html https://docs.pola.rs/api/python/stable/reference/dataframe/a...
Personally I find it extremely rare that I need to do this given Polars expressions are so comprehensive, including when.then.otherwise when all else fails.
- data-ottawa 8mo agoThat one has a bit more friction than pandas because the return schema requirement -- pandas let's you get away with this bad practice. It also does batches when you declare scalar outputs, but you can't control the batch size, which usually isn't an issue, but I've run into situations where it is.
- deleted 8mo ago[deleted]