Debugging apply (and friends)
Explore various techniques for debugging pandas.
We'll cover the following...
It can be confusing to keep track of what pandas passes around when we call apply
, assign
, groupby(...)apply
, groupby(...)agg
, groupby(...)transform
, pipe
, and others. What’s getting passed in? A Series, DataFrame, group? One answer is to look at the ...