• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
October 25, 2022 |1.1K Views
How to Rename Columns in Pandas DataFrame
  Share   Like
Description
Discussion

Given a Pandas DataFrame, let’s see how to rename columns in Pandas with examples. Here, we will discuss 6 different ways to rename column names in pandas DataFrame.

About Pandas DataFrame: 

Pandas DataFrame is a rectangular grid that is used to store data. It is easy to visualize and work with data when stored in dataFrame.

  • It consists of rows and columns.
  • Each row is a measurement of some instance while the column is a vector that contains data for some specific attribute/variable.
  • Each Dataframe column has homogeneous data throughout any specific column but Dataframe rows can contain homogeneous or heterogeneous data throughout any specific row.
  • Unlike two-dimensional arrays, pandas’ Dataframe axes are labeled.


Method 1: Using rename() function

One way of renaming the columns in a Pandas Dataframe is by using the rename() function. This method is quite useful when we need to rename some selected columns because we need to specify information only for the columns which are to be renamed. 

Related Articles :  

https://www.geeksforgeeks.org/how-to-rename-columns-in-pandas-dataframe/

https://www.geeksforgeeks.org/rename-column-by-index-in-pandas/