7 ms·
from polars import col as C df.select(C.x, y = C.w / C.z)
by orlp 14d ago
from polars import col as C
df.select(C.x, y = C.w / C.z)
- dkga 14d agoStill, it’s a very good approximation but still an approximation to the more ergonomic and expressive tidyverse syntax
- sanderjd 14d agoOne person's "ergonomic and expressive" is another person's "wait what in the world is actually going on here".
- __mharrison__ 14d agoThis is the way. Favor keyword arguments to alias.