Skip to content

Commit fe98ba8

Browse files
authored
Removed to_panel references (#26308)
1 parent 2bbc0c2 commit fe98ba8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

doc/source/reference/frame.rst

-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,6 @@ Reshaping, sorting, transposing
243243
DataFrame.swapaxes
244244
DataFrame.melt
245245
DataFrame.squeeze
246-
DataFrame.to_panel
247246
DataFrame.to_xarray
248247
DataFrame.T
249248
DataFrame.transpose

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def _constructor_sliced(self):
206206
@property
207207
def _constructor_expanddim(self):
208208
"""Used when a manipulation result has one higher dimension as the
209-
original, such as Series.to_frame() and DataFrame.to_panel()
209+
original, such as Series.to_frame()
210210
"""
211211
raise NotImplementedError
212212

pandas/core/reshape/concat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def concat(objs, axis=0, join='outer', join_axes=None, ignore_index=False,
3434
3535
Parameters
3636
----------
37-
objs : a sequence or mapping of Series or DataFrame objects.
37+
objs : a sequence or mapping of Series or DataFrame objects
3838
If a dict is passed, the sorted keys will be used as the `keys`
3939
argument, unless it is passed, in which case the values will be
4040
selected (see below). Any None objects will be dropped silently unless

0 commit comments

Comments
 (0)