Skip to content

Commit cff52e6

Browse files
Rename agnositic_groupby to universal_groupby
1 parent acbcb61 commit cff52e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

polars-v-pandas/dataframe_conversions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
polars_df
1515

1616

17-
def agnositic_groupby(df):
17+
def universal_groupby(df):
1818
return (
1919
nw.from_native(df)
2020
.group_by("region")
@@ -24,6 +24,6 @@ def agnositic_groupby(df):
2424
)
2525

2626

27-
agnositic_groupby(pandas_df)
27+
universal_groupby(pandas_df)
2828

29-
agnositic_groupby(polars_df)
29+
universal_groupby(polars_df)

0 commit comments

Comments
 (0)