pandas 툴을 사용해 replace('__', ',')
작업을 진행했는데 데이터가 변환되지 않았다.
시도
1. type문제인가 싶어서 다시 str type으로 바꾸고 진행 (실패)
df.astype(str).replace('__', ',')
2. 바꾸려는 문자열 '__' 가 데이터에도 더블언더스코어로 적혀있는지 확인 (동일했음)
pandas substring을 바꾸는 방법으로 아래와 같은 방법이 존재했다.
df.Series.str.replace
코드로 적용해보면 아래와 같다.
df[바꾸려는 column].str.replace('__', ',')