How to remove MultiIndex columns in Pandas

This article explains how to remove MultiIndex columns from a Pandas DataFrame, a useful feature when working with complex data with multiple index levels. You will learn how to flatten or completely remove MultiIndex columns.

Pandas provides a MultiIndex feature that allows you to have multiple index levels for rows and columns. In some cases, you may want to remove MultiIndex columns to simplify your data. In this article, you'll learn how to remove or flatten MultiIndex columns in Pandas.

Python Code

import pandas as pd

# Create a DataFrame with MultiIndex columns
arrays = [['A', 'A', 'B', 'B'], ['one', 'two', 'one', 'two']]
tuples = list(zip(*arrays))
index = pd.MultiIndex.from_tuples(tuples, names=['first', 'second'])

df = pd.DataFrame([[1, 2, 3, 4], [5, 6, 7, 8]], columns=index)

# Display the original DataFrame
print("DataFrame with MultiIndex columns:")
print(df)

# Method to remove MultiIndex columns
df.columns = ['_'.join(col) for col in df.columns]

# Display the DataFrame after removing MultiIndex columns
print("\nDataFrame after removing MultiIndex columns:")
print(df)

Detailed explanation:

  1. import pandas as pd: Imports the Pandas library to work with DataFrames.
  2. arrays = [['A', 'A', 'B', 'B'], ['one', 'two', 'one', 'two']]: Creates a list for MultiIndex.
  3. tuples = list(zip(*arrays)): Creates tuples from the lists using zip.
  4. index = pd.MultiIndex.from_tuples(tuples, names=['first', 'second']): Creates MultiIndex columns from the list of tuples.
  5. df = pd.DataFrame(...): Creates a DataFrame with MultiIndex columns.
  6. df.columns = ['_'.join(col) for col in df.columns]: Joins the levels of MultiIndex into a single string to remove MultiIndex.
  7. print(df): Prints the DataFrame after removing MultiIndex columns.

System requirements:

  • Python 3.6 or above
  • Pandas version 1.0.0 or newer

How to install the libraries needed to run the Python code above:

Use pip to install Pandas:

pip install pandas

Tips:

  • MultiIndex is useful for working with complex data, but if not needed, consider flattening it for easier manipulation.
  • You can customize how the levels of the MultiIndex are joined by using a different character instead of _.
Tags: Python, Pandas


Related

Guide to Creating a Python Application Interface with PyQT6

A detailed guide on how to create a simple application interface using PyQT6 in Python, with installation steps and code explanations.
How to automatically log into a website using Selenium with Chrome in Python

A guide on how to use Selenium in Python to automate logging into a website using Chrome. This tutorial includes step-by-step instructions and a complete Python script.
How to UPDATE data in a MySQL database using Python

A guide on how to update data in a MySQL database using Python with the mysql-connector-python library.
How to INSERT data into a MySQL database using Python

A guide on how to insert data into a MySQL database table using Python and the mysql-connector-python library.
How to DELETE data from a MySQL database using Python

A guide on how to use Prepared Statements in Python to delete data from a table in a MySQL database safely and effectively.
Removing background from images using Rembg in Python

A detailed guide on how to remove the background from images using Python and the Rembg library. The article includes source code and line-by-line explanations.
Inject JavaScript code into a website using Selenium in Python

A guide on using Selenium in Python to inject JavaScript code into a website in the Chrome browser. This article will help you understand how to interact with web elements and execute JavaScript.
Guide to Creating a Login Form in Python Using PyQT6

A detailed guide on how to create a login form in Python using PyQT6, including designing the interface and handling the login button event.
Common Functions When Using Selenium Chrome in Python

A guide that introduces the most common functions used when working with Selenium and Chrome in Python, enabling tasks like searching, interacting with web elements, and browser navigation.
How to Post Data to API Using Python

This article guides you on how to send data to an API using the POST method in Python with the requests library, helping you better understand how to interact with web services.

main.add_cart_success