In pandas we can merge two or more Dataframes based on a common column by using the pandas.merge() function and setting on parameter as the common column name.
Let's take a look at an example:
Example: Pandas Merge on Common Column
import pandas as pd
data_city_NYC = {
'Dates': ['2023-07-01', '2023-07-02', '2023-07-03'],
'Temp_NYC': [25, 30, 27],
'Humidity_NYC': [50, 45, 55]
}
data_city_Chicago = {
'Dates': ['2023-07-01', '2023-07-02', '2023-07-03'],
'Temp_Chicago': [28, 32, 29],
'Humidity_Chicago': [60, 58, 62]
}
df_city_NYC = pd.DataFrame(data_city_NYC).set_index('Dates')
df_city_Chicago = pd.DataFrame(data_city_Chicago).set_index('Dates')
print("DataFrame: NYC City")
print(df_city_NYC)
print("\nDataFrame: Chicago City")
print(df_city_Chicago)
# Merge the DataFrames on the common column 'Dates'
merged_cities_df = pd.merge(df_city_NYC, df_city_Chicago, on='Dates')
print("\nMerged DataFrames on Common Column Dates:")
print(merged_cities_df)
Output:
DataFrame: NYC City
Temp_NYC Humidity_NYC
Dates
2023-07-01 25 50
2023-07-02 30 45
2023-07-03 27 55
DataFrame: Chicago City
Temp_Chicago Humidity_Chicago
Dates
2023-07-01 28 60
2023-07-02 32 58
2023-07-03 29 62
Merged DataFrames on Common Column Dates:
Temp_NYC Humidity_NYC Temp_Chicago Humidity_Chicago
Dates
2023-07-01 25 50 28 60
2023-07-02 30 45 32 58
2023-07-03 27 55 29 62

-
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:
- How to save All Files at once in Notepad++ - NotepadPlusPlus
- Hide Scrollbar from Android Views - Android
- Microsoft Sign-in Error Code: 50058 (Request Id, Correlation Id and Timestamp) - Microsoft
- Android : Connection with adb was interrupted 0 attempts have been made to reconnect - Android
- How to Compare Strings in Bash Script - Bash
- Fix: Spring Boot REST HTTP Status 415 - Unsupported Media Type Error - Java
- Access Windows share folder in Ubuntu Device in Network - Ubuntu
- Change Android Toast background color - Android