split stack 행 분리

SOOYEON·2022년 8월 26일
0

pandas

목록 보기
16/37

주소지에 콤마로 나열된 주소를 행으로 추가하여 분리

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)

0개의 댓글