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
Furthermore, ``pd.to_timedelta`` has gained a similar API, of ``errors='raise'|'ignore'|'coerce'``. The ``coerce`` keyword
165
+
Furthermore, ``pd.to_timedelta`` has gained a similar API, of ``errors='raise'|'ignore'|'coerce'``, and the ``coerce`` keyword
170
166
has been deprecated in favor of ``errors='coerce'``.
171
167
172
168
.. _whatsnew_0170.api_breaking.convert_objects:
@@ -350,7 +346,7 @@ Usually you simply want to know which values are null.
350
346
HDFStore dropna behavior
351
347
^^^^^^^^^^^^^^^^^^^^^^^^
352
348
353
-
default behavior for HDFStore write functions with ``format='table'`` is now to keep rows that are all missing except for index. Previously, the behavior was to drop rows that were all missing save the index. The previous behavior can be replicated using the ``dropna=True`` option. (:issue:`9382`)
349
+
The default behavior for HDFStore write functions with ``format='table'`` is now to keep rows that are all missing. Previously, the behavior was to drop rows that were all missing save the index. The previous behavior can be replicated using the ``dropna=True`` option. (:issue:`9382`)
354
350
355
351
Previously:
356
352
@@ -400,6 +396,7 @@ See :ref:`documentation <io.hdf5>` for more details.
400
396
Other API Changes
401
397
^^^^^^^^^^^^^^^^^
402
398
399
+
- Line and kde plot with ``subplots=True`` now uses default colors, not all black. Specify ``color='k'`` to draw all lines in black (:issue:`9894`)
403
400
- Enable writing Excel files in :ref:`memory <_io.excel_writing_buffer>` using StringIO/BytesIO (:issue:`7074`)
404
401
- Enable serialization of lists and dicts to strings in ExcelWriter (:issue:`8188`)
405
402
- Allow passing `kwargs` to the interpolation methods (:issue:`10378`).
0 commit comments