-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
DOC: Add details of dropna in DataFrame.pivot_table #61184
Conversation
- Added test :callable:`test_pivot_table_index_and_column_keys_with_nan` to test that null index/column keys are kept when `dropna=False`, and removed when `dropna=True`.
- Updated docs for `dropna` parameter in :callable:`pivot_table`.
Which |
- Replaced `np.NaN` with `np.nan` to pass failing tests on CI build.
- Added comma and period to `dropna` parameter in :callable:`pivot_table` to pass docstring validation hook in CI build.
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.
Thanks for the PR!
Which
doc/source/whatsnew/vX.X.X.rst
file should I edit?v2.3.0.rst
?
No need to add to the whatsnew when improving a docstring.
pandas/core/reshape/pivot.py
Outdated
- rows with a NaN value in any column will be omitted before computing margins, | ||
- index/column keys containing NA values will be dropped (see ``dropna`` | ||
parameter in ``pandas.DataFrame.groupby``). |
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.
You'll also need to update the entry in shared_docs
within pandas.core.frame
.
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.
Can you use an NA value
instead of a NaN value
. Also link to the groupby via :meth:`DataFrame.groupby`
instead of pandas.DataFrame.groupby
.
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.
It's :meth:
and not :method:
for sphinx.
- Updated reference link to `pandas.DataFrame.groupby` with :method: syntax in the :callable:`pivot_table` param `dropna` docstring.
- Replaced "NaN" with "NA" per request from @rhshadrach in comment.
- Updated value of :attr:`DataFrame._shared_docs["pivot_table"]` to include updated docstring from `pandas.core.reshape.pivot.pivot_table`.
- Updated spelling of :method: to :meth: per comment feedback.
- Updated shared docs replacing :method: with :meth: per comment feedback.
- Removed docstring for `test_pivot_table_index_and_column_keys_with_nan` per comment feedback.
- Renamed `actual` -> `result` per comment feedback.
- Removed type hints for `test_pivot_table_index_and_column_keys_with_nan` per comment feedback.
- Removed data manipulations from `expected` to prevent dependencies on other pandas methods.
- Added comment with GitHub issue reference number.
- Updated _shared_docs["pivot_table"] to match docstring in pandas/core/reshape/pivot.py. modified: pandas/core/reshape/pivot.py - Updated `dropna` param docstring in `pivot_table` so the dashes convert to a bulleted list.
Think I figured it out in 1a82d2a. |
- Updated dropna param description in `_shared_docs["pivot_table"]` to use bulleted list similar to `parse_dates` param description in `pandas.io.parsers.readers._doc_read_csv_and_table`. modified: pandas/core/reshape/pivot.py - Updated docstring for `dropna` param in :func:`pivot_table` to use bulleted list similar to `parse_dates` param description in `pandas.io.parsers.readers._doc_read_csv_and_table`.
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.
Looking good!
- Updated `_shared_docs["pivot_table"]` value per comments. modified: pandas/core/reshape/pivot.py - Updated `dropna` param docstring in :func:`pivot_table` per comments.
@rhshadrach ready for review |
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.
lgtm
Thanks @it176131 - nice work! |
pivot_table
drops rows and columns despite values being non-NaN
#61113doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.