반응형
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
- django
- Java
- array
- Github
- PostgreSQL
- Excel
- PySpark
- numpy
- c#
- PANDAS
- Redshift
- Mac
- matplotlib
- Google Spreadsheet
- GIT
- math
- Apache
- list
- Tkinter
- string
- Python
- 파이썬
- google apps script
- SQL
- hive
- dataframe
- Kotlin
- Google Excel
- gas
Archives
- Today
- Total
목록Not a number (1)
달나라 노트
Python Pandas : isna (NaN 값 테스트하기, NaN 값 필터링)
Pandas의 isna method는 어떤 값이 NaN값인지 아닌지를 체크합니다. NaN값이라면 True, NaN값이 아니라면 False를 return합니다. 아래 예씨를 보시죠. import numpy as np import pandas as pd print(pd.isna(np.nan)) -- Result True isna method가 NaN값을 받으니 True값을 return하는 것을 볼 수 있습니다. 마치 아래 글에 있는 numpy의 isnan과 비슷한 기능을 하죠. https://cosmosproject.tistory.com/367 Python numpy : isnan (NaN값 다루기, None값 다루기, null값 다루기, NaN값 테스트, None값 테스트, nvl, coalesce 어느 ..
Python/Python Pandas
2022. 2. 18. 19:23