Unpivot

Learn how to unpivot a DataFrame with the the melt() method as part of data reshaping.

Unpivoting with melt()

Now that we know how to convert DataFrames from the long to wide format with pivot() and pivot_table(), let's explore the reverse situation of reshaping data from the wide to long format. A wide format DataFrame can be unpivoted with the melt() method that helps reshape it into a long format, comprising of these three output columns:

  • Index column (serves as the identifier variable and can be multiple columns)

  • Variable column

  • Value column

Press + to interact
Illustration of the unpivoting of a DataFrame using melt()
Illustration of the unpivoting of a DataFrame using melt()

Lets see the melt() method in action by working on a subset of the credit card dataset. The dataset comprises the customer ID, age, income, and credit rating of credit card holders.

Press + to interact
# View first 5 rows of credit card subset dataset
print(df.head())

The melt() method has the following parameters:

  • id_vars: Column(s) to use ...