You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/release.rst
+242
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,248 @@ analysis / manipulation tool available in any language.
37
37
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
38
38
* Documentation: http://pandas.pydata.org
39
39
40
+
pandas 0.20.0 / 0.20.1
41
+
----------------------
42
+
43
+
**Release date:** May 5, 2017
44
+
45
+
46
+
This is a major release from 0.19.2 and includes a number of API changes, deprecations, new features,
47
+
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all
48
+
users upgrade to this version.
49
+
50
+
Highlights include:
51
+
52
+
- New ``.agg()`` API for Series/DataFrame similar to the groupby-rolling-resample API's, see :ref:`here <whatsnew_0200.enhancements.agg>`
53
+
- Integration with the ``feather-format``, including a new top-level ``pd.read_feather()`` and ``DataFrame.to_feather()`` method, see :ref:`here <io.feather>`.
54
+
- The ``.ix`` indexer has been deprecated, see :ref:`here <whatsnew_0200.api_breaking.deprecate_ix>`
55
+
- ``Panel`` has been deprecated, see :ref:`here <whatsnew_0200.api_breaking.deprecate_panel>`
56
+
- Addition of an ``IntervalIndex`` and ``Interval`` scalar type, see :ref:`here <whatsnew_0200.enhancements.intervalindex>`
57
+
- Improved user API when grouping by index levels in ``.groupby()``, see :ref:`here <whatsnew_0200.enhancements.groupby_access>`
58
+
- Improved support for ``UInt64`` dtypes, see :ref:`here <whatsnew_0200.enhancements.uint64_support>`
59
+
- A new orient for JSON serialization, ``orient='table'``, that uses the Table Schema spec and that gives the possibility for a more interactive repr in the Jupyter Notebook, see :ref:`here <whatsnew_0200.enhancements.table_schema>`
60
+
- Experimental support for exporting styled DataFrames (``DataFrame.style``) to Excel, see :ref:`here <whatsnew_0200.enhancements.style_excel>`
61
+
- Window binary corr/cov operations now return a MultiIndexed ``DataFrame`` rather than a ``Panel``, as ``Panel`` is now deprecated, see :ref:`here <whatsnew_0200.api_breaking.rolling_pairwise>`
62
+
- Support for S3 handling now uses ``s3fs``, see :ref:`here <whatsnew_0200.api_breaking.s3>`
63
+
- Google BigQuery support now uses the ``pandas-gbq`` library, see :ref:`here <whatsnew_0200.api_breaking.gbq>`
64
+
65
+
See the :ref:`v0.20.1 Whatsnew <whatsnew_0200>` overview for an extensive list
66
+
of all enhancements and bugs that have been fixed in 0.20.1.
67
+
68
+
69
+
.. note::
70
+
71
+
This is a combined release for 0.20.0 and and 0.20.1.
72
+
Version 0.20.1 contains one additional change for backwards-compatibility with downstream projects using pandas' ``utils`` routines. (:issue:`16250`)
0 commit comments