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