반응형
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 |
Tags
- numpy
- array
- PostgreSQL
- SQL
- Mac
- c#
- gas
- Kotlin
- Google Excel
- django
- 파이썬
- string
- Excel
- hive
- google apps script
- Github
- PySpark
- matplotlib
- Apache
- list
- Python
- Redshift
- GIT
- Google Spreadsheet
- Tkinter
- PANDAS
- math
- dataframe
- Java
Archives
- Today
- Total
목록str (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