Skip to content

BUG - False drops groupings #58361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2866,7 +2866,7 @@ def to_parquet(
Returns
-------
bytes if no path argument is provided else None

See Also
--------
read_parquet : Read a parquet file.
Expand Down Expand Up @@ -8984,6 +8984,10 @@ def groupby(

if level is None and by is None:
raise TypeError("You have to supply one of 'by' and 'level'")

if not as_index and isinstance(by, Series) and by.name in self.columns:
raise ValueError(f"cannot insert {by.name}, already exists")


return DataFrameGroupBy(
obj=self,
Expand Down
Loading