Skip to content

Commit fb7478f

Browse files
committed
modified: pandas/core/frame.py
- Updated value of :attr:`DataFrame._shared_docs["pivot_table"]` to include updated docstring from `pandas.core.reshape.pivot.pivot_table`.
1 parent e19bf3c commit fb7478f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/core/frame.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9347,8 +9347,10 @@ def pivot(
93479347
on the rows and columns.
93489348
dropna : bool, default True
93499349
Do not include columns whose entries are all NaN. If True,
9350-
rows with a NaN value in any column will be omitted before
9351-
computing margins.
9350+
- rows with a NA value in any column will be omitted before computing
9351+
margins,
9352+
- index/column keys containing NA values will be dropped (see ``dropna``
9353+
parameter in :method:``DataFrame.groupby``).
93529354
margins_name : str, default 'All'
93539355
Name of the row / column that will contain the totals
93549356
when margins is True.

0 commit comments

Comments
 (0)