diff --git a/pandas/core/frame.py b/pandas/core/frame.py index d1ba85c50d91d..fbbaa2a67bf35 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -6449,10 +6449,12 @@ def unstack(self, level=-1, fill_value=None): See Also -------- - %(other)s - pivot_table - DataFrame.pivot - Series.explode + %(other)s : Identical method. + pivot_table : Create a spreadsheet-style pivot table as a DataFrame. + DataFrame.pivot : Return reshaped DataFrame organized + by given index / column values. + DataFrame.explode : Explode a DataFrame from list-like + columns to long format. Examples --------