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/whatsnew/v0.17.0.txt
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Highlights include:
20
20
if they are all ``NaN``, see :ref:`here <whatsnew_0170.api_breaking.hdf_dropna>`
21
21
- Support for ``Series.dt.strftime`` to generate formatted strings for datetime-likes, see :ref:`here <whatsnew_0170.strftime>`
22
22
- Development installed versions of pandas will now have ``PEP440`` compliant version strings (:issue:`9518`)
23
-
- Support for reading SAS xport files, see :meth:`~pandas.io.read_sas`.
23
+
- Support for reading SAS xport files, see :ref:`here <whatsnew_0170.enhancements.sas_xport>`
24
24
25
25
Check the :ref:`API Changes <whatsnew_0170.api>` and :ref:`deprecations <whatsnew_0170.deprecations>` before updating.
26
26
@@ -85,6 +85,18 @@ We are now supporting a ``Series.dt.strftime`` method for datetime-likes to gene
85
85
86
86
The string format is as the python standard library and details can be found `here <https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior>`_
87
87
88
+
.. _whatsnew_0170.enhancements.sas_xport:
89
+
90
+
Support for SAS XPORT files
91
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^
92
+
93
+
:meth:`~pandas.io.read_sas` provides support for reading SAS XPORT format files:
94
+
95
+
df = pd.read_sas('sas_xport.xpt')
96
+
97
+
It is also possible to obtain an iterator and read an XPORT file
98
+
incrementally.
99
+
88
100
.. _whatsnew_0170.enhancements.other:
89
101
90
102
Other enhancements
@@ -94,13 +106,6 @@ Other enhancements
94
106
95
107
- Enable `read_hdf` to be used without specifying a key when the HDF file contains a single dataset (:issue:`10443`)
96
108
97
-
- :meth:`~pandas.io.read_sas` provides support for reading SAS XPORT format files:
98
-
99
-
df = pd.read_sas('sas_xport.xpt')
100
-
101
-
It is also possible to obtain an iterator and read an XPORT file
102
-
incrementally.
103
-
104
109
- ``DatetimeIndex`` can be instantiated using strings contains ``NaT`` (:issue:`7599`)
105
110
- The string parsing of ``to_datetime``, ``Timestamp`` and ``DatetimeIndex`` has been made consistent. (:issue:`7599`)
0 commit comments