I have the first dataframe like this :
Code Name
1 Smd Ananda k 200 Gr
2 Lactgen Low Lactose
3 Bulb Surya 1 pcs
4 A1 Foods 500GR
..and the second dataframe as:
Brand
Surya
Brisk
Smd
Lctgen
I want to create a new dataframe with the Brand column, something like below:
Code Name Brand
1 Smd Ananda k 200 Gr Smd
2 Lactgen Low Lactose Lctgen
3 Bulb Surya 1 pcs Surya
4 A1 Foods 500GR Nan
I am still learning Pandas, but unable to get any fuzzy matching login in the documentation. Could you please help me here. Thank you in advance