logoalt Hacker News

rogue711/20/20242 repliesview on HN

In this case `d` is the entire dataframe. It's just a way of "piping" the object without having to rename it.

You are probably thinking about `df.apply(lambda row: ..., axis=1)` which operates on each row at a time and is indeed very slow since it's not vectorized. Here this is different and vectorized.


Replies

almostkorean11/20/2024

Appreciate the explanation, this is something I should know by now but don't

OutOfHere11/20/2024

That's excellent.