
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Write a Python code to rename the given axis in a dataframe
Assume, you have a dataframe and the result for renaming the axis is,
Rename index: index Id Age Mark 0 1.0 12.0 80.0 1 2.0 12.0 90.0 2 3.0 14.0 NaN 3 NaN 13.0 95.0 4 5.0 NaN 85.0
Solution
To solve this, we will follow the steps given below −
Define a dataframe
Apply df.rename_axis() function inside axis name as ‘index’ and set axis=1
df.rename_axis('index',axis=1)
Example
import pandas as pd df = pd.DataFrame({"Id":[1, 2, 3, None, 5], "Age":[12, 12, 14, 13, None], "Mark":[80, 90, None, 95, 85], }) print("Dataframe is:\n",df) print("Rename index:") df = df.rename_axis('index',axis=1) print(df)
Output
Dataframe is: Id Age Mark 0 1.0 12.0 80.0 1 2.0 12.0 90.0 2 3.0 14.0 NaN 3 NaN 13.0 95.0 4 5.0 NaN 85.0 Rename index: index Id Age Mark 0 1.0 12.0 80.0 1 2.0 12.0 90.0 2 3.0 14.0 NaN 3 NaN 13.0 95.0 4 5.0 NaN 85.0
- Related Articles
- Write a Python code to filter palindrome names in a given dataframe
- Write a Python code to fill all the missing values in a given dataframe
- Write a Python code to swap last two rows in a given dataframe
- Write a Python code to select any one random row from a given DataFrame
- Write a Python code to find the second lowest value in each column in a given dataframe
- Write a Python code to combine two given series and convert it to a dataframe
- Python - Rename column names by index in a Pandas DataFrame without using rename()
- Write a Python program to reshape a given dataframe in different ways
- Write a program in Python to convert a given dataframe to a LaTex document
- Write a program in Python to transpose the index and columns in a given DataFrame
- Write a program in Python to localize Asian timezone for a given dataframe
- Write a program in Python to modify the diagonal of a given DataFrame by 1
- Write a program in Python to remove first duplicate rows in a given dataframe
- Write a program in Python to count the records based on the designation in a given DataFrame
- How to rename column names in a Pandas DataFrame?

Advertisements