Skip to content

Commit b345a28

Browse files
Fix rebase damage
1 parent 6220391 commit b345a28

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

doc/source/whatsnew/v1.1.0.rst

+17
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,23 @@ Other enhancements
271271
This can be used to set a custom compression level, e.g.,
272272
``df.to_csv(path, compression={'method': 'gzip', 'compresslevel': 1}``
273273
(:issue:`33196`)
274+
- :meth:`Series.update` now accepts objects that can be coerced to a :class:`Series`,
275+
such as ``dict`` and ``list``, mirroring the behavior of :meth:`DataFrame.update` (:issue:`33215`)
276+
- :meth:`~pandas.core.groupby.GroupBy.transform` and :meth:`~pandas.core.groupby.GroupBy.aggregate` has gained ``engine`` and ``engine_kwargs`` arguments that supports executing functions with ``Numba`` (:issue:`32854`, :issue:`33388`)
277+
- :meth:`~pandas.core.resample.Resampler.interpolate` now supports SciPy interpolation method :class:`scipy.interpolate.CubicSpline` as method ``cubicspline`` (:issue:`33670`)
278+
- :meth:`DataFrame.to_numpy` now supports the ``na_value`` keyword to control the NA sentinel in the output array (:issue:`33820`)
279+
- The ``ExtensionArray`` class has now an :meth:`~pandas.arrays.ExtensionArray.equals`
280+
method, similarly to :meth:`Series.equals` (:issue:`27081`).
281+
- The minimum suppported dta version has increased to 105 in :meth:`~pandas.io.stata.read_stata` and :class:`~pandas.io.stata.StataReader` (:issue:`26667`).
282+
- :meth:`~pandas.core.frame.DataFrame.to_stata` supports compression using the ``compression``
283+
keyword argument. Compression can either be inferred or explicitly set using a string or a
284+
dictionary containing both the method and any additional arguments that are passed to the
285+
compression library. Compression was also added to the low-level Stata-file writers
286+
:class:`~pandas.io.stata.StataWriter`, :class:`~pandas.io.stata.StataWriter117`,
287+
and :class:`~pandas.io.stata.StataWriterUTF8` (:issue:`26599`).
288+
- :meth:`HDFStore.put` now accepts `track_times` parameter. Parameter is passed to ``create_table`` method of ``PyTables`` (:issue:`32682`).
289+
- Make :class:`pandas.core.window.Rolling` and :class:`pandas.core.window.Expanding` iterable(:issue:`11704`)
290+
- Make ``option_context`` a :class:`contextlib.ContextDecorator`, which allows it to be used as a decorator over an entire function (:issue:`34253`).
274291
- :meth:`DataFrame.to_excel` can now also generate OpenOffice spreadsheet (.ods) files (:issue:`27222`)
275292

276293
.. ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)