File tree 2 files changed +3
-54
lines changed
2 files changed +3
-54
lines changed Original file line number Diff line number Diff line change @@ -1237,58 +1237,7 @@ Serialization / IO / Conversion
1237
1237
Panel.to_frame
1238
1238
Panel.to_xarray
1239
1239
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
+
1292
1241
.. _api.index :
1293
1242
1294
1243
Index
Original file line number Diff line number Diff line change 4
4
5
5
def main ():
6
6
# classes whose members to check
7
- classes = [pd .Series , pd .DataFrame , pd .Panel , pd . Panel4D ]
7
+ classes = [pd .Series , pd .DataFrame , pd .Panel ]
8
8
9
9
def class_name_sort_key (x ):
10
10
if x .startswith ('Series' ):
11
- # make sure Series precedes DataFrame, Panel, and Panel4D
11
+ # make sure Series precedes DataFrame, and Panel.
12
12
return ' ' + x
13
13
else :
14
14
return x
You can’t perform that action at this time.
0 commit comments