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.1.txt
+12-12
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Highlights include:
17
17
18
18
- Support for Conditional HTML Formatting, see :ref:`here <whatsnew_0171.style>`
19
19
- Releasing the GIL on the csv reader & other ops, see :ref:`here <whatsnew_0171.performance>`
20
-
- Regression in ``DataFrame.drop_duplicates`` from 0.16.2, causing incorrect results on integer values (:issue:`11376`)
20
+
- Fixed regression in ``DataFrame.drop_duplicates`` from 0.16.2, causing incorrect results on integer values (:issue:`11376`)
21
21
22
22
.. contents:: What's new in v0.17.1
23
23
:local:
@@ -67,11 +67,11 @@ Enhancements
67
67
68
68
- ``DatetimeIndex`` now supports conversion to strings with ``astype(str)`` (:issue:`10442`)
69
69
- Support for ``compression`` (gzip/bz2) in :meth:`pandas.DataFrame.to_csv` (:issue:`7615`)
70
-
- Improve the error message in :func:`pandas.io.gbq.to_gbq` when a streaming insert fails (:issue:`11285`)
71
70
- ``pd.read_*`` functions can now also accept :class:`python:pathlib.Path`, or :class:`py:py._path.local.LocalPath`
72
71
objects for the ``filepath_or_buffer`` argument. (:issue:`11033`)
72
+
- The ``DataFrame`` and ``Series`` functions ``.to_csv()``, ``.to_html()`` and ``.to_latex()`` can now handle paths beginning with tildes (e.g. ``~/Documents/``) (:issue:`11438`)
73
73
- ``DataFrame`` now uses the fields of a ``namedtuple`` as columns, if columns are not supplied (:issue:`11181`)
74
-
- Improve the error message displayed in :func:`pandas.io.gbq.to_gbq` when the DataFrame does not match the schema of the destination table (:issue:`11359`)
74
+
- ``DataFrame.itertuples()`` now returns ``namedtuple`` objects, when possible. (:issue:`11269`, :issue:`11625`)
75
75
- Added ``axvlines_kwds`` to parallel coordinates plot (:issue:`10709`)
76
76
- Option to ``.info()`` and ``.memory_usage()`` to provide for deep introspection of memory consumption. Note that this can be expensive to compute and therefore is an optional parameter. (:issue:`11595`)
77
77
@@ -106,23 +106,20 @@ Enhancements
106
106
107
107
- ``pivot_table`` now has a ``margins_name`` argument so you can use something other than the default of 'All' (:issue:`3335`)
108
108
- Implement export of ``datetime64[ns, tz]`` dtypes with a fixed HDF5 store (:issue:`11411`)
109
-
- The ``DataFrame`` and ``Series`` functions ``.to_csv()``, ``.to_html()`` and ``.to_latex()`` can now handle paths beginning with tildes (e.g. ``~/Documents/``). (:issue:`11438`)
109
+
- Pretty printing sets (e.g. in DataFrame cells) now uses set literal syntax (``{x, y}``) instead of
- Indexing with a null key will raise a ``TypeError``, instead of a ``ValueError`` (:issue:`11356`)
123
-
- ``Series.sort_index()`` now correctly handles the ``inplace`` option (:issue:`11402`)
124
-
- ``SparseArray.__iter__()`` now does not cause ``PendingDeprecationWarning`` in Python 3.5 (:issue:`11622`)
125
-
- ``DataFrame.itertuples()`` now returns ``namedtuple`` objects, when possible. (:issue:`11269`, :issue:`11625`)
126
123
- ``Series.ptp`` will now ignore missing values by default (:issue:`11163`)
127
124
128
125
.. _whatsnew_0171.deprecations:
@@ -155,6 +152,9 @@ Performance Improvements
155
152
Bug Fixes
156
153
~~~~~~~~~
157
154
155
+
- ``SparseArray.__iter__()`` now does not cause ``PendingDeprecationWarning`` in Python 3.5 (:issue:`11622`)
156
+
- Regression from 0.16.2 for output formatting of long floats/nan, restored in (:issue:`11302`)
157
+
- ``Series.sort_index()`` now correctly handles the ``inplace`` option (:issue:`11402`)
158
158
- Incorrectly distributed .c file in the build on ``PyPi`` when reading a csv of floats and passing ``na_values=<a scalar>`` would show an exception (:issue:`11374`)
159
159
- Bug in ``.to_latex()`` output broken when the index has a name (:issue:`10660`)
160
160
- Bug in ``HDFStore.append`` with strings whose encoded length exceded the max unencoded length (:issue:`11234`)
0 commit comments