If you want to rename the column names of a DataFrame, you can make use of DataFrame.rename function from the pandas module.
Let's take a look at some code examples:
Example 1:
>>> import pandas as pd
>>> df = pd.DataFrame({"Column1": ["2023-01",32.2], "Column2": ["2023-02", 31.1]})
>>> df.rename(columns={"Column1": "Year-Month", "Column2": "Temperature"})
Year-Month Temperature
0 2023-01 2023-02
1 32.2 31.1
Example 2:
import pandas as pd
code2care_data = {
'Year': [2020, 2021, 2022, 2023],
'Country': ['United States', 'India', 'United Kingdom', 'Germany'],
'City': ['New York', 'Mumbai', 'London', 'Berlin'],
'Mobile': [312125, 2234010, 150125, 413822],
'Desktop': [353871, 427896, 374675, 258976],
'Search Engine': ['Google', 'Bing', 'Google', 'Yahoo']
}
df = pd.DataFrame(code2care_data)
print("\nDataFrame before renaming Column Names:")
print(df)
# Renaming the columns
new_column_names = {
'Country': 'Visitor Country',
'City': 'Visitor City',
'Mobile': 'Mobile Visits',
'Desktop': 'Desktop Visits',
'Search Engine': 'Search Engine Source'
}
df = df.rename(columns=new_column_names)
print("\nDataFrame after renaming Column Names:")
print(df)
Output:
DataFrame before renaming Column Names:
Year Country City Mobile Desktop Search Engine
0 2020 United States New York 312125 353871 Google
1 2021 India Mumbai 2234010 427896 Bing
2 2022 United Kingdom London 150125 374675 Google
3 2023 Germany Berlin 413822 258976 Yahoo
DataFrame after renaming Column Names:
Year Visitor Country Visitor City Mobile Visits Desktop Visits \
0 2020 United States New York 312125 353871
1 2021 India Mumbai 2234010 427896
2 2022 United Kingdom London 150125 374675
3 2023 Germany Berlin 413822 258976
Search Engine Source
0 Google
1 Bing
2 Google
3 Yahoo

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- ls: .: Operation not permitted - Mac Terminal ZSH Error - MacOS
- Install Docker for Mac using Home-brew Cask - Docker
- pip/pip3 ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied - PIP
- SharePoint error cannot connect to the configuration database - SharePoint
- How to take user input from the console in a Python program - Python
- Read JSON File in Python Program - Python
- DDMS files not found hprof-conv.exe - Android
- How to turn on Bluetooth on Windows 10 - Microsoft