str.contains 문자열 포함 조건
문자열 필터
Dataframe을 사용하다가 특정 문자열을 포함하는 조건으로 데이터를 필터링 해야 할 때가 있다.
그럴때는 str.contains 함수를 사용하면 간단하게 진행할 수 있다.
조건절을 mask로 정의하면, 다음과 같이 사용할 수 있다.
mask = (consumer_pd['contents'].str.contains('개인정보')) &(consumer_pd['label']=='N')
filtered_pd = consumer_pd[mask2]
'# Language > Python' 카테고리의 다른 글
[Python] 파이썬 패키지(Package) 사용법 (0) | 2023.01.12 |
---|---|
[Python] 파이썬 Class 상속(inheritnace) (0) | 2023.01.10 |
[Selenium] NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type. (0) | 2022.04.29 |
[Python - Error] xlrd.biffh.XLRDError: Can't find workbook in OLE2 compound document (0) | 2022.04.28 |