Skip to content

Commit 1657246

Browse files
committed
two doc changes
1 parent 28a38f2 commit 1657246

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

doc/source/reshaping.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ the right thing:
265265
Reshaping by Melt
266266
-----------------
267267

268-
The :func:`~DataFrame.melt` function is useful to massage a
268+
The ``melt`` and :func:`~DataFrame.melt` functions are useful to massage a
269269
DataFrame into a format where one or more columns are identifier variables,
270270
while all other columns, considered measured variables, are "unpivoted" to the
271271
row axis, leaving just two non-identifier columns, "variable" and "value". The

pandas/core/frame.py

-1
Original file line numberDiff line numberDiff line change
@@ -4062,7 +4062,6 @@ def unstack(self, level=-1, fill_value=None):
40624062
columns, considered measured variables (`value_vars`), are "unpivoted" to
40634063
the row axis, leaving just two non-identifier columns, 'variable' and
40644064
'value'.
4065-
40664065
%(versionadded_melt)s
40674066
40684067
Parameters

0 commit comments

Comments
 (0)