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 List of Lists with Examples
- Fix: ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none) ERROR: No matching distribution found for tkinter
- How to Convert Python Notebook .ipynb (JSON) to Executable .py Module
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python: Pandas Merge Indicator (Left, Right and Both) Example
- Fix: EOFError Exception in Python
- How to URL Decode a Query String in Python
- How to take user input from the console in a Python program
- Compare two lists in Python and return matches
- How to change the Python Default version
- Fix: KeyError: exception in Python
- How to get the Execution Time of A Python Program
- Fix: ModuleNotFoundError: No module named boto3 [Python]
- How to get unique values from a list in Python
- How to pip install Python Modules in VSCode
- Python: Fix - TypeError: NoneType object is not iterable
- How to delete a file using Python code example
- How to create a dictionary comprehension in Python
- Python: Get just the filename without extension using Path
- How to comment out a block of code in Python
- How to add two float numbers in Python
- Python: How to POST Json Data with HTTP Request
- Get MD5 Hash as Checksum of a String in Python
- Python - Convert float to String
- How to Parse XML String in Python
More Posts:
- How to Uninstall Brew on Mac - MacOS
- Java: Convert Byte to Binary String Example - Java
- How to install Python 2.7.x version on macOS Ventura/Sonoma - Python
- Command to Sort File In Reverse Order [Unix/Linux/macOS] - Bash
- HTML5 HELLO WORLD Example - Html
- Chessboard with pieces using pure HTML and CSS - Html
- Informal written computer correspondence acronyms list and meanings - 2022
- How to find version of Cargo in Rust - Rust