반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- PySpark
- 파이썬
- Google Excel
- gas
- Tkinter
- Apache
- google apps script
- c#
- math
- Java
- PostgreSQL
- Mac
- string
- Github
- django
- hive
- Redshift
- PANDAS
- Google Spreadsheet
- matplotlib
- list
- Python
- array
- dataframe
- SQL
- GIT
- Kotlin
- Excel
- numpy
Archives
- Today
- Total
목록문자열 포함 (1)
달나라 노트
Python Pandas : contains (문자열의 포함여부 판단하기)
Pandas의 str.contains method는 특정 Series에 적용할 수 있으며 해당 Series에 있는 값들이 어떤 문자열을 포함하고있으면 True, 포함하고있지 않으면 False를 return합니다. Syntax Series.str.contains(string/pattern, case=True/False, regex=True/False) string/pattern : 찾을 문자열 또는 패턴 case : True일 경우 case sensitive(대소문자 구분), False일 경우 case insensitive(대소문자 구분 안함) regex : True일 경우 string/pattern을 regular expression pattern으로 인식. False일 경우 string/pattern을..
Python/Python Pandas
2021. 6. 30. 19:00