반응형
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 |
Tags
- Excel
- array
- string
- gas
- GIT
- django
- 파이썬
- Apache
- list
- math
- Kotlin
- matplotlib
- Redshift
- PostgreSQL
- Github
- google apps script
- Python
- SQL
- hive
- Mac
- dataframe
- numpy
- PANDAS
- Google Spreadsheet
- Java
- Tkinter
- Google Excel
- c#
- PySpark
Archives
- Today
- Total
달나라 노트
Python Pandas : fillna (DataFrame에서 NaN값을 replace 하기) 본문
Python/Python Pandas
Python Pandas : fillna (DataFrame에서 NaN값을 replace 하기)
CosmosProject 2021. 1. 20. 20:57728x90
반응형
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
위 예시를 보면 df_test DataFrame에는 NaN값이 있습니다.
그러나 fillna를 통해 df_filled DataFrame에는 NaN값이 모두 'n'으로 채워졌죠.
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_test.loc[:,['col2']] = df_test.loc[:, ['col2']].fillna('n')
print(df_test)
- 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.0 n
1 2.0 a
2 NaN b
3 4.0 n
4 NaN z
또한 loc를 이용해서 일부 컬럼에만 fillna를 적용할 수도 있습니다.
위 예시를 보면 col2에 존재하는 NaN값만 'n'으로 채워졌음을 알 수 있죠.
728x90
반응형
'Python > Python Pandas' 카테고리의 다른 글
Python Pandas : notna (누락값 여부 체크하기) (0) | 2021.03.18 |
---|---|
Python Pandas : rolling (DataFrame window function) (0) | 2021.01.22 |
Python Pandas : to_clipboard (DataFrame 복사하기) (0) | 2021.01.12 |
Python Pandas : isin (각각의 요소가 DataFrame 또는 Series에 존재하는지 파악) (0) | 2021.01.07 |
Python Pandas : sort_values (DataFrame의 정렬, DataFrame 정렬하기) (0) | 2021.01.06 |
Comments