@@ -279,7 +279,7 @@ Other API Changes
279
279
^^^^^^^^^^^^^^^^^
280
280
281
281
- ``DataFrame.between_time`` and ``Series.between_time`` now only parse a fixed set of time strings. Parsing of
282
- date strings is no longer supported and raises a ``ValueError``. (:issue:`11818`)
282
+ date strings is no longer supported and raises a ``ValueError``. (:issue:`11818`)
283
283
284
284
.. ipython:: python
285
285
@@ -320,7 +320,8 @@ Deprecations
320
320
In [1]: s = Series(range(3))
321
321
322
322
In [2]: pd.rolling_mean(s,window=2,min_periods=1)
323
- FutureWarning: pd.rolling_mean is deprecated for Series and will be removed in a future version, replace with
323
+ FutureWarning: pd.rolling_mean is deprecated for Series and
324
+ will be removed in a future version, replace with
324
325
Series.rolling(min_periods=1,window=2,center=False).mean()
325
326
Out[2]:
326
327
0 0.0
@@ -329,7 +330,8 @@ Deprecations
329
330
dtype: float64
330
331
331
332
In [3]: pd.rolling_cov(s, s, window=2)
332
- FutureWarning: pd.rolling_cov is deprecated for Series and will be removed in a future version, replace with
333
+ FutureWarning: pd.rolling_cov is deprecated for Series and
334
+ will be removed in a future version, replace with
333
335
Series.rolling(window=2).cov(other=<Series>)
334
336
Out[3]:
335
337
0 NaN
@@ -405,7 +407,7 @@ Bug Fixes
405
407
406
408
407
409
408
- - Bug in subclasses of `DataFrame` where `AttributeError` did not propagate (:issue:`11808`)
410
+ - Bug in subclasses of `` DataFrame`` where `` AttributeError` ` did not propagate (:issue:`11808`)
409
411
- Bug groupby on tz-aware data where selection not returning ``Timestamp`` (:issue:`11616`)
410
412
- Bug in ``pd.read_clipboard`` and ``pd.to_clipboard`` functions not supporting Unicode; upgrade included ``pyperclip`` to v1.5.15 (:issue:`9263`)
411
413
0 commit comments