다음 열 이름을 가진 두 개의 데이터 프레임이 있습니다.
frame_1:
event_id, date, time, county_ID
frame_2:
countyid, state
에 조인 (왼쪽)하여 다음 열이있는 데이터 프레임을 얻고 싶습니다 county_ID = countyid
.
joined_dataframe
event_id, date, time, county, state
조인하려는 열이 인덱스가 아닌 경우 수행 방법을 알 수 없습니다. 가장 쉬운 방법은 무엇입니까? 감사!
right_index=True
.