반응형
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
- Python
- Apache
- c#
- Google Excel
- string
- Google Spreadsheet
- 파이썬
- google apps script
- Redshift
- gas
- Github
- dataframe
- GIT
- Tkinter
- PySpark
- matplotlib
- PostgreSQL
- Mac
- SQL
- numpy
- array
- list
- PANDAS
- django
- hive
- math
- Java
- Excel
- Kotlin
Archives
- Today
- Total
목록fillna (1)
달나라 노트
Python Pandas : fillna (DataFrame에서 NaN값을 replace 하기)
DataFrame의 fillna는 DataFrame에 존재하는 NaN값을 어떠한 값으로 채워줍니다. import pandas as pd import numpy as np dict_test = { 'col1': [1, 2, np.nan, 4, np.nan], 'col2': [np.nan, 'a', 'b', np.nan, 'z'], } df_test = pd.DataFrame(dict_test) print(df_test) df_filled = df_test.fillna('n') print(df_filled) - Output col1 col2 0 1.0 NaN 1 2.0 a 2 NaN b 3 4.0 NaN 4 NaN z col1 col2 0 1 n 1 2 a 2 n b 3 4 n 4 n z 위 예시를 보면 d..
Python/Python Pandas
2021. 1. 20. 20:57