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
+5-2
Original file line number
Diff line number
Diff line change
@@ -48,14 +48,17 @@ analysis / manipulation tool available in any language.
48
48
pandas 0.16.0
49
49
-------------
50
50
51
-
**Release date:** (February ??, 2015)
51
+
**Release date:** (March 15, 2015)
52
52
53
53
This is a major release from 0.15.2 and includes a number of API changes, several new features, enhancements, and
54
54
performance improvements along with a large number of bug fixes.
55
55
56
56
Highlights include:
57
57
58
-
- Allow Stata files to be read incrementally, support for long strings in Stata files (issue:`9493`:) :ref:`here<io.stata_reader>`.
58
+
- ``DataFrame.assign`` method, see :ref:`here <whatsnew_0160.enhancements.assign>`
59
+
- ``Series.to_coo/from_coo`` methods to interact with ``scipy.sparse``, see :ref:`here <whatsnew_0160.enhancements.sparse>`
60
+
- Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attribute with ``datetime.timedelta``, see :ref:`here <whatsnew_0160.api_breaking.timedelta>`
61
+
- Changes to the ``.loc`` slicing API to conform with the behavior of ``.ix`` see :ref:`here <whatsnew_0160.api_breaking.indexing>`
59
62
60
63
See the :ref:`v0.16.0 Whatsnew <whatsnew_0160>` overview or the issue tracker on GitHub for an extensive list
61
64
of all API changes, enhancements and bugs that have been fixed in 0.16.0.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.16.0.txt
+8-2
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,19 @@
1
1
.. _whatsnew_0160:
2
2
3
-
v0.16.0 (February ??, 2015)
4
-
---------------------------
3
+
v0.16.0 (March 15, 2015)
4
+
------------------------
5
5
6
6
This is a major release from 0.15.2 and includes a small number of API changes, several new features,
7
7
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all
8
8
users upgrade to this version.
9
9
10
10
- Highlights include:
11
11
12
+
* ``DataFrame.assign`` method, see :ref:`here <whatsnew_0160.enhancements.assign>`
13
+
* ``Series.to_coo/from_coo`` methods to interact with ``scipy.sparse``, see :ref:`here <whatsnew_0160.enhancements.sparse>`
14
+
* Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attribute with ``datetime.timedelta``, see :ref:`here <whatsnew_0160.api_breaking.timedelta>`
15
+
* Changes to the ``.loc`` slicing API to conform with the behavior of ``.ix`` see :ref:`here <whatsnew_0160.api_breaking.indexing>`
16
+
12
17
- Check the :ref:`API Changes <whatsnew_0160.api>` and :ref:`deprecations <whatsnew_0160.deprecations>` before updating
This method is also exposed by the lower level ``Index.get_indexer`` and ``Index.get_loc`` methods.
33
38
39
+
- Allow Stata files to be read incrementally with an iterator; support for long strings in Stata files. See the docs :ref:`here<io.stata_reader>`. (issue:`9493`:)
34
40
- Paths beginning with ~ will now be expanded to begin with the user's home directory (:issue:`9066`)
35
41
- Added time interval selection in ``get_data_yahoo`` (:issue:`9071`)
36
42
- Added ``Series.str.slice_replace()``, which previously raised ``NotImplementedError`` (:issue:`8888`)
0 commit comments