Skip to content

Commit 01894d8

Browse files
yinleonAnkurDedania
authored andcommitted
DOC: remove Panel4D from the API docs pandas-dev#15579 (pandas-dev#15598)
1 parent 21cc067 commit 01894d8

File tree

2 files changed

+3
-54
lines changed

2 files changed

+3
-54
lines changed

doc/source/api.rst

+1-52
Original file line numberDiff line numberDiff line change
@@ -1237,58 +1237,7 @@ Serialization / IO / Conversion
12371237
Panel.to_frame
12381238
Panel.to_xarray
12391239
Panel.to_clipboard
1240-
1241-
.. _api.panel4d:
1242-
1243-
Panel4D
1244-
-------
1245-
1246-
Constructor
1247-
~~~~~~~~~~~
1248-
.. autosummary::
1249-
:toctree: generated/
1250-
1251-
Panel4D
1252-
1253-
Serialization / IO / Conversion
1254-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1255-
.. autosummary::
1256-
:toctree: generated/
1257-
1258-
Panel4D.to_xarray
1259-
1260-
Attributes and underlying data
1261-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1262-
**Axes**
1263-
1264-
* **labels**: axis 1; each label corresponds to a Panel contained inside
1265-
* **items**: axis 2; each item corresponds to a DataFrame contained inside
1266-
* **major_axis**: axis 3; the index (rows) of each of the DataFrames
1267-
* **minor_axis**: axis 4; the columns of each of the DataFrames
1268-
1269-
.. autosummary::
1270-
:toctree: generated/
1271-
1272-
Panel4D.values
1273-
Panel4D.axes
1274-
Panel4D.ndim
1275-
Panel4D.size
1276-
Panel4D.shape
1277-
Panel4D.dtypes
1278-
Panel4D.ftypes
1279-
Panel4D.get_dtype_counts
1280-
Panel4D.get_ftype_counts
1281-
1282-
Conversion
1283-
~~~~~~~~~~
1284-
.. autosummary::
1285-
:toctree: generated/
1286-
1287-
Panel4D.astype
1288-
Panel4D.copy
1289-
Panel4D.isnull
1290-
Panel4D.notnull
1291-
1240+
12921241
.. _api.index:
12931242

12941243
Index

scripts/api_rst_coverage.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
def main():
66
# classes whose members to check
7-
classes = [pd.Series, pd.DataFrame, pd.Panel, pd.Panel4D]
7+
classes = [pd.Series, pd.DataFrame, pd.Panel]
88

99
def class_name_sort_key(x):
1010
if x.startswith('Series'):
11-
# make sure Series precedes DataFrame, Panel, and Panel4D
11+
# make sure Series precedes DataFrame, and Panel.
1212
return ' ' + x
1313
else:
1414
return x

0 commit comments

Comments
 (0)