From 34590968ef0f3d70bef98dbe961f319f1f32d744 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Mon, 17 Mar 2014 00:13:47 +0100 Subject: [PATCH] DOC: some minor doc fixes --- doc/source/10min.rst | 2 +- doc/source/release.rst | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/10min.rst b/doc/source/10min.rst index 7fc6f6d197dff..d6c17a3066b86 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -571,7 +571,7 @@ We can produce pivot tables from this data very easily: .. ipython:: python - pd.pivot_table(df, values='D', rows=['A', 'B'], cols=['C']) + pd.pivot_table(df, values='D', index=['A', 'B'], columns=['C']) Time Series diff --git a/doc/source/release.rst b/doc/source/release.rst index 369f83066ed0d..c0415a350515f 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -118,6 +118,7 @@ API Changes - Better propagation/preservation of Series names when performing groupby operations: + - ``SeriesGroupBy.agg`` will ensure that the name attribute of the original series is propagated to the result (:issue:`6265`). - If the function provided to ``GroupBy.apply`` returns a named series, the @@ -221,7 +222,7 @@ Bug Fixes - Bug in :meth:`DataFrame.replace` where nested dicts were erroneously depending on the order of dictionary keys and values (:issue:`5338`). - Perf issue in concatting with empty objects (:issue:`3259`) -- Clarify sorting of ``sym_diff`` on ``Index``es with ``NaN``s (:issue:`6444`) +- Clarify sorting of ``sym_diff`` on ``Index`` objects with ``NaN`` values (:issue:`6444`) - Regression in ``MultiIndex.from_product`` with a ``DatetimeIndex`` as input (:issue:`6439`) - Bug in ``str.extract`` when passed a non-default index (:issue:`6348`) - Bug in ``str.split`` when passed ``pat=None`` and ``n=1`` (:issue:`6466`)