주소지에 콤마로 나열된 주소를 행으로 추가하여 분리
split
콤마로 분할하여 리스트 생성ad_list = plant.설치장소.str.split(',') ad_list
stack
으로 분리된 주소 리스트를 열로 이동splt_ad = ad_list.apply(lambda x: pd.Series(x)) plant_ad = splt_ad.stack().reset_index(level=1, drop=True).to_frame('설치장소') plant_ad.head(10)