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
@jreback I proofread the highlights and made some edits (but language
is always a bit subjective). Comments?
Author: Joris Van den Bossche <[email protected]>
Closes#12323 from jorisvandenbossche/doc-highlights and squashes the following commits:
e22db0c [Joris Van den Bossche] DOC: some rewording of highlights
Copy file name to clipboardExpand all lines: doc/source/release.rst
+14-7Lines changed: 14 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -48,13 +48,20 @@ users upgrade to this version.
48
48
49
49
Highlights include:
50
50
51
-
- Window functions are now methods on ``.groupby`` like objects, see :ref:`here <whatsnew_0180.enhancements.moments>`.
52
-
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`)
53
-
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
54
-
- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here <whatsnew_0180.breaking.resample>`.
55
-
- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
56
-
- The ``.to_xarray()`` function has been added for compatibility with the `xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
57
-
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`, and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>` and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
51
+
- Moving and expanding window functions are now methods on Series and DataFrame,
52
+
similar to ``.groupby``, see :ref:`here <whatsnew_0180.enhancements.moments>`.
53
+
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index``
54
+
for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
55
+
- API breaking change to the ``.resample`` method to make it more ``.groupby``
56
+
like, see :ref:`here <whatsnew_0180.breaking.resample>`.
57
+
- Removal of support for positional indexing with floats, which was deprecated
58
+
since 0.14.0. This will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
59
+
- The ``.to_xarray()`` function has been added for compatibility with the
60
+
`xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
61
+
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`,
62
+
and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>`
63
+
and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
64
+
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`).
58
65
59
66
See the :ref:`v0.18.0 Whatsnew <whatsnew_0180>` overview for an extensive list
60
67
of all enhancements and bugs that have been fixed in 0.17.1.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.18.0.txt
+16-13Lines changed: 16 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -9,22 +9,25 @@ users upgrade to this version.
9
9
10
10
.. warning::
11
11
12
-
pandas >= 0.18.0 will no longer support compatibility with Python version 2.6 (:issue:`7718`)
13
-
14
-
.. warning::
15
-
16
-
pandas >= 0.18.0 will no longer support compatibility with Python version 3.3 (:issue:`11273`)
12
+
pandas >= 0.18.0 no longer supports compatibility with Python version 2.6
13
+
and 3.3 (:issue:`7718`, :issue:`11273`)
17
14
18
15
Highlights include:
19
16
20
-
- Window functions are now methods on ``.groupby`` like objects, see :ref:`here <whatsnew_0180.enhancements.moments>`.
21
-
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`)
22
-
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
23
-
- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here <whatsnew_0180.breaking.resample>`.
24
-
- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
25
-
- The ``.to_xarray()`` function has been added for compatibility with the `xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
26
-
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extractall>`, and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>` and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
27
-
17
+
- Moving and expanding window functions are now methods on Series and DataFrame,
18
+
similar to ``.groupby``, see :ref:`here <whatsnew_0180.enhancements.moments>`.
19
+
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index``
20
+
for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
21
+
- API breaking change to the ``.resample`` method to make it more ``.groupby``
22
+
like, see :ref:`here <whatsnew_0180.breaking.resample>`.
23
+
- Removal of support for positional indexing with floats, which was deprecated
24
+
since 0.14.0. This will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
25
+
- The ``.to_xarray()`` function has been added for compatibility with the
26
+
`xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
27
+
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`,
28
+
and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>`
29
+
and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
30
+
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`).
28
31
29
32
Check the :ref:`API Changes <whatsnew_0180.api_breaking>` and :ref:`deprecations <whatsnew_0180.deprecations>` before updating.
0 commit comments