@@ -127,6 +127,10 @@ pandas 0.11.1
127
127
- ``DataFrame.interpolate() `` is now deprecated. Please use
128
128
``DataFrame.fillna() `` and ``DataFrame.replace() `` instead (GH3582 _,
129
129
GH3675 _, GH3676 _).
130
+ - the ``method `` and ``axis `` arguments of ``DataFrame.replace() `` are
131
+ deprecated
132
+ - ``DataFrame.replace `` 's ``infer_types `` parameter is removed and now
133
+ performs conversion by default. (GH3907 _)
130
134
- Deprecated display.height, display.width is now only a formatting option
131
135
does not control triggering of summary, similar to < 0.11.0.
132
136
- Add the keyword ``allow_duplicates `` to ``DataFrame.insert `` to allow a duplicate column
@@ -141,6 +145,8 @@ pandas 0.11.1
141
145
``to_pickle `` instance method, ``save `` and ``load `` will give deprecation warning.
142
146
- the ``method `` and ``axis `` arguments of ``DataFrame.replace() `` are
143
147
deprecated
148
+ - the ``method `` and ``axis `` arguments of ``DataFrame.replace() `` are
149
+ deprecated
144
150
- Implement ``__nonzero__ `` for ``NDFrame `` objects (GH3691 _, GH3696 _)
145
151
- ``as_matrix `` with mixed signed and unsigned dtypes will result in 2 x the lcd of the unsigned
146
152
as an int, maxing with ``int64 ``, to avoid precision issues (GH3733 _)
@@ -236,6 +242,8 @@ pandas 0.11.1
236
242
- Fix incorrect arguments passed to concat that are not list-like (e.g. concat(df1,df2)) (GH3481 _)
237
243
- Correctly parse when passed the ``dtype=str `` (or other variable-len string dtypes) in ``read_csv `` (GH3795 _)
238
244
- Fix index name not propogating when using ``loc/ix `` (GH3880 _)
245
+ - Fixed a bug where ``DataFrame.replace `` with a compiled regular expression
246
+ in the ``to_replace `` argument wasn't working (GH3907 _)
239
247
240
248
.. _GH3164 : https://github.com/pydata/pandas/issues/3164
241
249
.. _GH2786 : https://github.com/pydata/pandas/issues/2786
@@ -331,6 +339,7 @@ pandas 0.11.1
331
339
.. _GH3873 : https://github.com/pydata/pandas/issues/3873
332
340
.. _GH3877 : https://github.com/pydata/pandas/issues/3877
333
341
.. _GH3880 : https://github.com/pydata/pandas/issues/3880
342
+ .. _GH3907 : https://github.com/pydata/pandas/issues/3907
334
343
335
344
336
345
pandas 0.11.0
0 commit comments