728x90
df["name"] = df["name"].str.replace(pat=r'[^\w!()/]', repl=r' ', regex=True) // 특수문자 치환, 괄호와 슬래쉬 제외
pat=r'[^\w]' 하면 전체 특수문자가 다 지워지는데,
pat=r'[^\w!()/]' 처럼 !(not) 뒤에 특수문자들 나열하면 이것들은 제외함.
728x90
'Python' 카테고리의 다른 글
딥러닝 클래스/데이터 불균형 (0) | 2023.07.19 |
---|---|
네트워크 그래프 연결중심성, 매개중심성 계산 (0) | 2023.07.09 |
excel 데이터 group by concatenate (0) | 2023.07.09 |
excel to json (0) | 2023.07.08 |
sns.heatmap plot size (0) | 2023.06.21 |