I have a dataframe like this
some_info THIS_info
abd set_1
def set_1
www set_1
qqq set_2
wws set_2
2222 set_3
and another dataframe like this
THIS_info this_algo
set_1 algo_1
set_2 algo_2
set_3 algo_2
I want to add a column to the first dataframe, based on the info on "THIS_info" so that I can get
some_info THIS_info this_algo
abd set_1 algo_1
def set_1 algo_1
www set_1 algo_1
qqq set_2 algo_2
wws set_2 algo_2
2222 set_3 algo_2
Is there a way to achieve this?