Skip to content

Commit

Permalink
Pass keyword argument for axis in dataframe any method (#1833)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverholworthy committed Jun 5, 2023
1 parent 2ca6df0 commit 3347981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvtabular/ops/categorify.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ def _top_level_groupby(df, options: FitOptions = None, spill=True):
del df_gb

# Extract null groups into gb_null
isnull = gb.isnull().any(1)
isnull = gb.isnull().any(axis=1)
gb_null = gb[~isnull]
gb = gb[isnull]
if not len(gb_null):
Expand Down

0 comments on commit 3347981

Please sign in to comment.