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
+15-18
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Check the :ref:`API Changes <whatsnew_0170.api>` and :ref:`deprecations <whatsne
51
51
New features
52
52
~~~~~~~~~~~~
53
53
54
-
- ``merge`` now accepts the argument ``indicator`` which adds a Categorical-type column (by default called ``_merge``) to the output object that takes on the values:
54
+
- ``merge`` now accepts the argument ``indicator`` which adds a Categorical-type column (by default called ``_merge``) to the output object that takes on the values (:issue:`8790`)
For more, see the :ref:`updated docs <merging.indicator>`
72
71
73
-
74
-
75
-
- ``DataFrame`` has the ``nlargest`` and ``nsmallest`` methods (:issue:`10393`)
72
+
- ``DataFrame`` has gained the ``nlargest`` and ``nsmallest`` methods (:issue:`10393`)
76
73
- SQL io functions now accept a SQLAlchemy connectable. (:issue:`7877`)
77
74
- Enable writing complex values to HDF stores when using table format (:issue:`10447`)
78
75
- Enable reading gzip compressed files via URL, either by explicitly setting the compression parameter or by inferring from the presence of the HTTP Content-Encoding header in the response (:issue:`8685`)
@@ -85,14 +82,14 @@ For more, see the :ref:`updated docs <merging.indicator>`
85
82
86
83
- Round DataFrame to variable number of decimal places (:issue:`10568`).
@@ -193,10 +190,10 @@ See the :ref:`docs <io.sas>` for more details.
193
190
Other enhancements
194
191
^^^^^^^^^^^^^^^^^^
195
192
196
-
- `read_sql` and `to_sql` can accept database URI as con parameter (:issue:`10214`)
197
-
- Enable `read_hdf` to be used without specifying a key when the HDF file contains a single dataset (:issue:`10443`)
193
+
- ``pd.read_sql`` and ``to_sql`` can accept database URI as con parameter (:issue:`10214`)
194
+
- Enable ``pd.read_hdf`` to be used without specifying a key when the HDF file contains a single dataset (:issue:`10443`)
198
195
- Enable writing Excel files in :ref:`memory <_io.excel_writing_buffer>` using StringIO/BytesIO (:issue:`7074`)
199
-
- Enable serialization of lists and dicts to strings in ExcelWriter (:issue:`8188`)
196
+
- Enable serialization of lists and dicts to strings in ``ExcelWriter`` (:issue:`8188`)
200
197
- Added functionality to use the ``base`` argument when resampling a ``TimeDeltaIndex`` (:issue:`10530`)
201
198
- ``DatetimeIndex`` can be instantiated using strings contains ``NaT`` (:issue:`7599`)
202
199
- The string parsing of ``to_datetime``, ``Timestamp`` and ``DatetimeIndex`` has been made consistent. (:issue:`7599`)
@@ -467,7 +464,7 @@ the original DataFrame with no conversion.
467
464
0 a
468
465
1 b
469
466
470
-
THe new behavior will convert all non-number-like strings to ``NaN``,
467
+
The new behavior will convert all non-number-like strings to ``NaN``,
471
468
when ``coerce=True`` is passed explicity.
472
469
473
470
.. ipython:: python
@@ -530,7 +527,7 @@ or it can return False if broadcasting can not be done:
530
527
Changes to Boolean Comparisons vs. None
531
528
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
532
529
533
-
Boolean comparisons of a ``Series`` vs ``None`` will now be equivalent to comparing with ``np.nan``, rather than raise ``TypeError``. xref (:issue:`1079`).
530
+
Boolean comparisons of a ``Series`` vs ``None`` will now be equivalent to comparing with ``np.nan``, rather than raise ``TypeError``. (:issue:`1079`).
0 commit comments