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/io.rst
+18-15
Original file line number
Diff line number
Diff line change
@@ -2554,7 +2554,7 @@ both on the writing (serialization), and reading (deserialization).
2554
2554
+----------------------+------------------------+
2555
2555
| 0.18 | >= 0.18 |
2556
2556
+======================+========================+
2557
-
2557
+
2558
2558
Reading (files packed by older versions) is backward-compatibile, except for files packed with 0.17 in Python 2, in which case only they can only be unpacked in Python 2.
2559
2559
2560
2560
.. ipython:: python
@@ -4198,7 +4198,7 @@ Authenticating with user account credentials is as simple as following the promp
4198
4198
which will be automatically opened for you. You will be authenticated to the specified
4199
4199
``BigQuery`` account using the product name ``pandas GBQ``. It is only possible on local host.
4200
4200
The remote authentication using user account credentials is not currently supported in Pandas.
4201
-
Additional information on the authentication mechanism can be found
4201
+
Additional information on the authentication mechanism can be found
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.18.0.txt
+8
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ Highlights include:
24
24
since 0.14.0. This will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.float_indexers>`.
25
25
- The ``.to_xarray()`` function has been added for compatibility with the
26
26
`xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
27
+
- The ``read_sas`` function has been enhanced to read ``sas7bdat`` files, see :ref:`here <whatsnew_0180.enhancements.sas>`.
27
28
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`,
28
29
and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>`
29
30
and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
@@ -403,6 +404,13 @@ For example, if you have a jupyter notebook you plan to convert to latex using n
403
404
Options ``display.latex.escape`` and ``display.latex.longtable`` have also been added to the configuration and are used automatically by the ``to_latex``
404
405
method. See the :ref:`options documentation<options>` for more info.
405
406
407
+
.. _whatsnew_0180.enhancements.sas:
408
+
409
+
SAS7BDAT files
410
+
^^^^^^^^^^^^^^
411
+
412
+
Pandas can now read SAS7BDAT files, including compressed files. The files can be read in entirety, or incrementally. For full details see :ref:`here <io.sas>`. (issue:`4052`)
0 commit comments