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
:meth:`core.window.Rolling.std` and :meth:`core.window.Rolling.var` will no longer
309
+
artificially truncate results that are less than ``~1e-8`` and ``~1e-15`` respectively to
310
+
zero (:issue:`37051`, :issue:`40448`, :issue:`39872`).
311
+
312
+
However, floating point artifacts may now exist in the results when rolling over larger values.
313
+
314
+
.. ipython:: python
315
+
316
+
s = pd.Series([7, 5, 5, 5])
317
+
s.rolling(3).var()
318
+
319
+
302
320
.. _whatsnew_130.api_breaking.deps:
303
321
304
322
Increased minimum versions for dependencies
@@ -661,6 +679,7 @@ Other
661
679
- Bug in :class:`Styler` where rendered HTML was missing a column class identifier for certain header cells (:issue:`39716`)
662
680
- Bug in :meth:`Styler.background_gradient` where text-color was not determined correctly (:issue:`39888`)
663
681
- Bug in :class:`Styler` where multiple elements in CSS-selectors were not correctly added to ``table_styles`` (:issue:`39942`)
682
+
- Bug in :class:`.Styler` where copying from Jupyter dropped top left cell and misaligned headers (:issue:`12147`)
664
683
- Bug in :meth:`DataFrame.equals`, :meth:`Series.equals`, :meth:`Index.equals` with object-dtype containing ``np.datetime64("NaT")`` or ``np.timedelta64("NaT")`` (:issue:`39650`)
665
684
- Bug in :func:`pandas.util.show_versions` where console JSON output was not proper JSON (:issue:`39701`)
666
685
- Bug in :meth:`DataFrame.convert_dtypes` incorrectly raised ValueError when called on an empty DataFrame (:issue:`40393`)
0 commit comments