In order to merge DataFrames with pandas in Python we can make use of the pandas.merge() function.
Example:
import pandas as pd
data_city_NYC = {
'Temp_NYC': [25, 30, 27, 25, 24, 24],
'Humidity_NYC': [50, 45, 55, 30, 55, 45]
}
data_city_Chicago = {
'Temp_Chicago': [28, 32, 29, 28, 29, 30],
'Humidity_Chicago': [60, 58, 62, 61, 65, 67]
}
dates = pd.date_range(start='2023-07-01', periods=6, freq='D')
df_city_NYC = pd.DataFrame(data_city_NYC, index=dates)
df_city_Chicago = pd.DataFrame(data_city_Chicago, index=dates)
print("DataFrame: NYC City")
print(df_city_NYC)
print("\nDataFrame: Chicago City")
print(df_city_Chicago)
merged_cities_df = pd.merge(df_city_NYC, df_city_Chicago, left_index=True, right_index=True)
print("\nMerged DataFrame Data:")
print(merged_cities_df)
Output:
DataFrame: NYC City
Temp_NYC Humidity_NYC
2023-07-01 25 50
2023-07-02 30 45
2023-07-03 27 55
2023-07-04 25 30
2023-07-05 24 55
2023-07-06 24 45
DataFrame: Chicago City
Temp_Chicago Humidity_Chicago
2023-07-01 28 60
2023-07-02 32 58
2023-07-03 29 62
2023-07-04 28 61
2023-07-05 29 65
2023-07-06 30 67
Merged DataFrame Data:
Temp_NYC Humidity_NYC Temp_Chicago Humidity_Chicago
2023-07-01 25 50 28 60
2023-07-02 30 45 32 58
2023-07-03 27 55 29 62
2023-07-04 25 30 28 61
2023-07-05 24 55 29 65
2023-07-06 24 45 30 67

-
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 make ZSH as the default shell on Ubuntu - zsh
- How to view the desktop when using macOS Stage Manager? - MacOS
- Eclipse : Workspace was written with an older version of the product and will be updated - Eclipse
- Make Android TextView Clickable like Buttons - Android
- [Solved] Dynamic Web Module 3.0 requires Java 1.6 or newer Mac OSX - Mac-OS-X
- Find installed Gradle version command - Gradle
- SharePoint Server 2016 setup error - A system restart from a previous installation or update is pending. Restart your computer and run setup to continue. - SharePoint
- You're not on Teams yet, but you can set it up for your organization. [Microsoft Teams Login Error] - Microsoft