Skip to content

Commit 684ab12

Browse files
committed
modified: pandas/core/frame.py
- Updated `_shared_docs["pivot_table"]` value per comments. modified: pandas/core/reshape/pivot.py - Updated `dropna` param docstring in :func:`pivot_table` per comments.
1 parent 3ff7b75 commit 684ab12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9348,10 +9348,10 @@ def pivot(
93489348
dropna : bool, default True
93499349
Do not include columns whose entries are all NaN. If True,
93509350
9351-
* rows with a NA value in any column will be omitted before computing
9351+
* rows with an NA value in any column will be omitted before computing
93529352
margins,
93539353
* index/column keys containing NA values will be dropped (see ``dropna``
9354-
parameter in :meth:``DataFrame.groupby``).
9354+
parameter in :meth:`DataFrame.groupby`).
93559355
93569356
margins_name : str, default 'All'
93579357
Name of the row / column that will contain the totals

pandas/core/reshape/pivot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def pivot_table(
103103
dropna : bool, default True
104104
Do not include columns whose entries are all NaN. If True,
105105
106-
* rows with a NA value in any column will be omitted before computing margins,
106+
* rows with an NA value in any column will be omitted before computing margins,
107107
* index/column keys containing NA values will be dropped (see ``dropna``
108108
parameter in :meth:``DataFrame.groupby``).
109109

0 commit comments

Comments
 (0)