Skip to content

Commit f59e33c

Browse files
Merge pull request pandas-dev#6653 from jorisvandenbossche/doc-fixes2
DOC: some minor doc fixes
2 parents e0058fb + 3459096 commit f59e33c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/source/10min.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ We can produce pivot tables from this data very easily:
571571

572572
.. ipython:: python
573573
574-
pd.pivot_table(df, values='D', rows=['A', 'B'], cols=['C'])
574+
pd.pivot_table(df, values='D', index=['A', 'B'], columns=['C'])
575575
576576
577577
Time Series

doc/source/release.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ API Changes
118118

119119
- Better propagation/preservation of Series names when performing groupby
120120
operations:
121+
121122
- ``SeriesGroupBy.agg`` will ensure that the name attribute of the original
122123
series is propagated to the result (:issue:`6265`).
123124
- If the function provided to ``GroupBy.apply`` returns a named series, the
@@ -221,7 +222,7 @@ Bug Fixes
221222
- Bug in :meth:`DataFrame.replace` where nested dicts were erroneously
222223
depending on the order of dictionary keys and values (:issue:`5338`).
223224
- Perf issue in concatting with empty objects (:issue:`3259`)
224-
- Clarify sorting of ``sym_diff`` on ``Index``es with ``NaN``s (:issue:`6444`)
225+
- Clarify sorting of ``sym_diff`` on ``Index`` objects with ``NaN`` values (:issue:`6444`)
225226
- Regression in ``MultiIndex.from_product`` with a ``DatetimeIndex`` as input (:issue:`6439`)
226227
- Bug in ``str.extract`` when passed a non-default index (:issue:`6348`)
227228
- Bug in ``str.split`` when passed ``pat=None`` and ``n=1`` (:issue:`6466`)

0 commit comments

Comments
 (0)