I am trying to join 2 dataframes such that both have the following named columns. What's the best way to do a LEFT OUTER join?
df = df.join(df_forecast, ["D_ACCOUNTS_ID", "D_APPS_ID", "D_CONTENT_PAGE_ID"], 'left')
Currently, I get an error that:
You're trying to access a column, but multiple columns have that name.
what am i missing out on?