Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion doc/source/reference/frame.rst
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ Reshaping, sorting, transposing
DataFrame.swapaxes
DataFrame.melt
DataFrame.squeeze
DataFrame.to_panel
DataFrame.to_xarray
DataFrame.T
DataFrame.transpose
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _constructor_sliced(self):
@property
def _constructor_expanddim(self):
"""Used when a manipulation result has one higher dimension as the
original, such as Series.to_frame() and DataFrame.to_panel()
original, such as Series.to_frame()
"""
raise NotImplementedError

Expand Down
2 changes: 1 addition & 1 deletion pandas/core/reshape/concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def concat(objs, axis=0, join='outer', join_axes=None, ignore_index=False,

Parameters
----------
objs : a sequence or mapping of Series or DataFrame objects.
objs : a sequence or mapping of Series or DataFrame objects
If a dict is passed, the sorted keys will be used as the `keys`
argument, unless it is passed, in which case the values will be
selected (see below). Any None objects will be dropped silently unless
Expand Down