I got two dataframes:
DF1: Index(['Name', 'Timestamp'], dtype='object')
// 34424 rows × 2 columns
DF2: Index(['Name', 'Description'], dtype='object')
// 103 rows × 2 columns
I want to replace the values in DF1["Name"]
with the corresponding Description in DF2["Description"]
I tried the following code:
DF1['Name'] = DF2['Name'].map(DF1_index('Name')['Description'])
DF1
Error: "Description"