Skip to content

Commit 4cf6011

Browse files
committed
MAINT: Remove Long and WidePanel
Deprecated since 0.17.0. xref pandas-devgh-10892
1 parent b1e29db commit 4cf6011

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bench/bench_join_panel.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def reindex_on_axis(panels, axis, axis_reindex):
4545
return p
4646

4747

48-
# does the job but inefficient (better to handle like you read a table in
49-
# pytables...e.g create a LongPanel then convert to Wide)
48+
# Does the job but inefficient. It is better to handle
49+
# this like you read a table in pytables.
5050
def create_panels_join(cls, panels):
5151
""" given an array of panels's, create a single panel """
5252
panels = [a for a in panels if a is not None]

doc/source/whatsnew/v0.20.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,7 @@ Removal of prior version deprecations/changes
772772
- The ``Categorical`` constructor has dropped the ``name`` parameter (:issue:`10632`)
773773
- The ``take_last`` parameter has been dropped from ``duplicated()``, ``drop_duplicates()``, ``nlargest()``, and ``nsmallest()`` methods (:issue:`10236`, :issue:`10792`, :issue:`10920`)
774774
- ``Series``, ``Index``, and ``DataFrame`` have dropped the ``sort`` and ``order`` methods (:issue:`10726`)
775+
- The ``LongPanel`` and ``WidePanel`` classes have been removed (:issue:`10892`)
775776

776777
.. _whatsnew_0200.performance:
777778

0 commit comments

Comments
 (0)