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/dsintro.rst
+8
Original file line number
Diff line number
Diff line change
@@ -941,6 +941,10 @@ method:
941
941
Panel4D (Experimental)
942
942
----------------------
943
943
944
+
.. warning::
945
+
946
+
In 0.19.0 ``Panel4D` is deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__. Pandas provides a :meth:`~Panel4D.to_xarray` method to automate this conversion.
947
+
944
948
``Panel4D`` is a 4-Dimensional named container very much like a ``Panel``, but
945
949
having 4 named dimensions. It is intended as a test bed for more N-Dimensional named
946
950
containers.
@@ -1026,6 +1030,10 @@ copy by default unless the data are heterogeneous):
1026
1030
PanelND (Experimental)
1027
1031
----------------------
1028
1032
1033
+
.. warning::
1034
+
1035
+
In 0.19.0 ``PanelND` is deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__.
1036
+
1029
1037
PanelND is a module with a set of factory functions to enable a user to construct N-dimensional named
1030
1038
containers like Panel4D, with a custom set of axis labels. Thus a domain-specific container can easily be
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.19.0.txt
+1-1
Original file line number
Diff line number
Diff line change
@@ -613,7 +613,7 @@ Deprecations
613
613
- ``Timestamp.offset`` property (and named arg in the constructor), has been deprecated in favor of ``freq`` (:issue:`12160`)
614
614
- ``pd.tseries.util.pivot_annual`` is deprecated. Use ``pivot_table`` as alternative, an example is :ref:`here <cookbook.pivot>` (:issue:`736`)
615
615
- ``pd.tseries.util.isleapyear`` has been deprecated and will be removed in a subsequent release. Datetime-likes now have a ``.is_leap_year`` property. (:issue:`13727`)
616
-
616
+
- ``Panel4D`` and ``PanelND`` constructors are deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__. Pandas provides a :meth:`~Panel4D.to_xarray` method to automate this conversion. (:issue:`13564`)
0 commit comments