I am trying to join two dataframes with different names.
newframe = pd.merge(detailedresults,seeds, how = 'left', left_on = ['Season', 'WTeamID','LTeamID'], right_on = ['Season','TeamID'])
I am trying to merge them by doing this. I am receiving this error
ValueError: len(right_on) must equal len(left_on)
How am I able to fix this?