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.18.0.txt
+3-1
Original file line number
Diff line number
Diff line change
@@ -253,6 +253,8 @@ Deprecations
253
253
For example, instead of ``s.rolling(window=5,freq='D').max()`` to get the max value on a rolling 5 Day window, one could use ``s.resample('D',how='max').rolling(window=5).max()``, which first resamples the data to daily data, then provides a rolling 5 day window.
254
254
255
255
- ``pd.tseries.frequencies.get_offset_name`` function is deprecated. Use offset's ``.freqstr`` property as alternative (:issue:`11192`)
256
+
- ``pandas.stats.fama_macbeth`` routines are deprecated and will be removed in a future version (:issue:`6077`)
257
+
- ``pandas.stats.ols``, ``pandas.stats.plm`` and ``pandas.stats.var`` routines are deprecated and will be removed in a future version (:issue:`6077`)
256
258
257
259
.. _whatsnew_0180.prior_deprecations:
258
260
@@ -346,4 +348,4 @@ Bug Fixes
346
348
347
349
- Bug in ``read_sql`` with pymysql connections failing to return chunked data (:issue:`11522`)
348
350
349
-
- Bug in ``DataFrame`` when masking an empty ``DataFrame`` (:issue:`11859`)
351
+
- Bug in ``DataFrame`` when masking an empty ``DataFrame`` (:issue:`11859`)
0 commit comments