I have two dataFrames:
The first dataframe df contains the data:
df = pd.DataFrame({'Standort': ['Vereinigte Staaten', 'Australien', 'Belgien'],
'value': [100, 300, 150]})
The second dataframe Lookup_Country is a lookup table to link the column 'Standort' to column 'Land' and replace the value of 'Standort' with the value of 'Country'
Lookup_Country = pd.DataFrame({'Land': ['Vereinigte Staaten', 'Großbritannien (UK)', 'Belgien'],
'Country': ['United States', 'United Kingdom', 'Belgium']})
How can I replace the value of the column 'Standort' by using the dataframe Lookup_Country so that I get a third dataframe
df3= pd.DataFrame({'Standort': ['United States', 'Australien', 'Belgium'],
'value': [100, 300, 150]})