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.20.0.txt
+6-1
Original file line number
Diff line number
Diff line change
@@ -785,6 +785,7 @@ Deprecations
785
785
- ``Series/DataFrame/Panel.consolidate()`` been deprecated as a public method. (:issue:`15483`)
786
786
- The ``as_indexer`` keyword of ``Series.str.match()`` has been deprecated (ignored keyword) (:issue:`15257`).
787
787
- The following top-level pandas functions have been deprecated and will be removed in a future version (:issue:`13790`)
788
+
788
789
* ``pd.pnow()``, replaced by ``Period.now()``
789
790
* ``pd.Term``, is removed, as it is not applicable to user code. Instead use in-line string expressions in the where clause when searching in HDFStore
790
791
* ``pd.Expr``, is removed, as it is not applicable to user code.
@@ -812,7 +813,7 @@ Removal of prior version deprecations/changes
812
813
- The ``Categorical`` constructor has dropped the ``name`` parameter (:issue:`10632`)
813
814
- The ``take_last`` parameter has been dropped from ``duplicated()``, ``drop_duplicates()``, ``nlargest()``, and ``nsmallest()`` methods (:issue:`10236`, :issue:`10792`, :issue:`10920`)
814
815
- ``Series``, ``Index``, and ``DataFrame`` have dropped the ``sort`` and ``order`` methods (:issue:`10726`)
815
-
- The ``LongPanel`` and ``WidePanel`` classes have been removed (:issue:`10892`)
816
+
- Where clauses in ``pytables`` are only accepted as strings and expressions types and not other data-types (:issue:`12027`)
816
817
817
818
.. _whatsnew_0200.performance:
818
819
@@ -830,6 +831,9 @@ Performance Improvements
830
831
- Improved performance when using ``.unstack()`` (:issue:`15503`)
831
832
- Improved performance of merge/join on ``category`` columns (:issue:`10409`)
832
833
- Improved performance of ``drop_duplicates()`` on ``bool`` columns (:issue:`12963`)
834
+
- Improve performance of ``pd.core.groupby.GroupBy.apply`` when the applied
835
+
function used the ``.name`` attribute of the group DataFrame (:issue:`15062`).
836
+
833
837
834
838
835
839
.. _whatsnew_0200.bug_fixes:
@@ -864,6 +868,7 @@ Bug Fixes
864
868
- Bug in ``pd.cut()`` with a single bin on an all 0s array (:issue:`15428`)
865
869
- Bug in ``pd.qcut()`` with a single quantile and an array with identical values (:issue:`15431`)
866
870
- Compat with SciPy 0.19.0 for testing on ``.interpolate()`` (:issue:`15662`)
871
+
- Bug in ``Series.asof`` which raised if the series contained all ``np.nan`` (:issue:`15713`)
867
872
868
873
- Compat for 32-bit platforms for ``.qcut/cut``; bins will now be ``int64`` dtype (:issue:`14866`)
0 commit comments