I have a dataframe like this:
name
Google
Amazon
Google
Yahoo
Google
Yahoo
And another one like this:
name stock_name
Google stockA
Amazon stockB
Yahoo stockC
The final result I would like to take from the merge of these 2 dataframes:
name stock_name
Google stockA
Amazon stockB
Google stockA
Yahoo stockC
Google stockA
Yahoo stockC
Using the merge it is not possible to make it. Any hind on how could make it?