I have two dataframes with the following column names:
frame_1:
event_id, date, time, county_ID
frame_2:
countyid, state
I would like to get a dataframe with the following columns by joining (left) on county_ID = countyid
:
joined_dataframe
event_id, date, time, county, state
I cannot figure out how to do it if the columns on which I want to join are not the index. What's the easiest way? Thanks!