-
Notifications
You must be signed in to change notification settings - Fork 921
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
Fix DataFrame reductions with median returning scalar instead of Series #16527
Conversation
.. pandas-compat:: | ||
:meth:`pandas.DataFrame.var`, :meth:`pandas.Series.var` | ||
|
||
Parameters currently not supported are `level` and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are level
and numeric_only
no longer supported?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
level
no long exists as a keyword (including pandas)
numeric_only
is supported in DataFrame
reduction ops
…to bug/reductions
/merge |
Description
xref #16507
This turned into a little bit of a refactor that also fixes the following:
cudf.DataFrame.from_pandas
not preserving thepandas.DataFrame.column.dtype
cudf.DataFrame.<reduction>(axis=0)
not preserving the.column
properties in the resulting.index
Checklist