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.16.0.txt
+9-11
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,10 @@ New features
22
22
23
23
- Reindex now supports ``method='nearest'`` for frames or series with a monotonic increasing or decreasing index (:issue:`9258`):
24
24
25
-
.. ipython:: python
25
+
.. ipython:: python
26
26
27
-
df = pd.DataFrame({'x': range(5)})
28
-
df.reindex([0.2, 1.8, 3.5], method='nearest')
27
+
df = pd.DataFrame({'x': range(5)})
28
+
df.reindex([0.2, 1.8, 3.5], method='nearest')
29
29
30
30
This method is also exposed by the lower level ``Index.get_indexer`` and ``Index.get_loc`` methods.
31
31
@@ -108,9 +108,7 @@ Backwards incompatible API changes
108
108
- ``TimedeltaIndex.freqstr`` now output the same string format as ``DatetimeIndex``. (:issue:`9116`)
109
109
110
110
111
-
- Bar and horizontal bar plots no longer add a dashed line along the info axis.
112
-
The prior style can be achieved with matplotlib's ``axhline`` or ``axvline``
113
-
methods (:issue:`9088`).
111
+
- Bar and horizontal bar plots no longer add a dashed line along the info axis. The prior style can be achieved with matplotlib's ``axhline`` or ``axvline`` methods (:issue:`9088`).
114
112
115
113
116
114
- ``Series`` now supports bitwise operation for integral types (:issue:`9016`)
@@ -203,12 +201,12 @@ Enhancements
203
201
204
202
- Added ``StringMethods.isnumeric`` and ``isdecimal`` which behave as the same as standard ``str`` (:issue:`9439`)
205
203
- The ``read_excel()`` function's :ref:`sheetname <_io.specifying_sheets>` argument now accepts a list and ``None``, to get multiple or all sheets respectively. If more than one sheet is specified, a dictionary is returned. (:issue:`9450`)
206
-
207
-
.. code-block:: python
208
204
209
-
# Returns the 1st and 4th sheet, as a dictionary of DataFrames.
- A ``verbose`` argument has been augmented in ``io.read_excel()``, defaults to False. Set to True to print sheet names as they are parsed. (:issue:`9450`)
213
211
- Added ``StringMethods.ljust()`` and ``rjust()`` which behave as the same as standard ``str`` (:issue:`9352`)
214
212
- ``StringMethods.pad()`` and ``center()`` now accept ``fillchar`` option to specify filling character (:issue:`9352`)
0 commit comments