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
- MySQL
- ubuntu
- Linux
- urllib
- flutter
- javascript
- 유니티
- 라즈베리파이
- ASP
- 맛집
- sqlite
- IOS
- pandas
- 날짜
- PyQt
- mssql
- port
- 함수
- 리눅스
- MS-SQL
- Unity
- PER
- GIT
- swift
- Excel
- node.js
- python
- tensorflow
- PyQt5
- 다이어트
Archives
아미(아름다운미소)
boolean 예외처리 본문
import pandas as pd
def fn_df(dict_df_types, df) -> pd.DataFrame:
list_int = [k_ for (k_, v_) in dict_df_types.items() if (v_ != 'string') and (v_ != 'boolean') and (k_ in df.columns.to_list())]
list_str = [k_ for (k_, v_) in dict_df_types.items() if (v_ == 'string') and (k_ in df.columns.to_list())]
list_bool = [k_ for (k_, v_) in dict_df_types.items() if (v_ == 'boolean') and (k_ in df.columns.to_list())]
df[list_str] = df[list_str].fillna('').astype('string')
df[list_int] = df[list_int].assign(**{col: pd.to_numeric(df[col], errors='coerce').fillna(0).astype('int32') for col in list_int})
df[list_int] = df[list_int].apply(lambda x: pd.to_numeric(x, errors='coerce').fillna(0).astype('int32'))
df[list_bool] = df[list_bool].assign(**{
col: df[col].astype(str).str.lower()
.replace({'true': True, 'false': False})
.map({True: True, False: False, 'true': True, 'false': False})
.fillna(False)
.astype('boolean')
for col in list_bool})
return df
dict_df_types = {
'column1': 'int32',
'column2': 'string',
'column3': 'float',
'column5': 'boolean',
}
data = {
'column1': ['1', '2', 3, 'invalid', 4, 1],
'column3': ['4.0', 5.5, 'invalid', 7.1, 5, 1],
'column5': [True, '5.5', 'invalid', 'TrUE', 6, 'FaLsE'],
}
df = pd.DataFrame(data)
fn_process_dataframe = fn_df(dict_df_types, df)
print(fn_process_dataframe)
'랭귀지 > pandas' 카테고리의 다른 글
pandas에서 데이타프레임의 타입이 틀린 항목찿기 (0) | 2024.12.23 |
---|---|
CASE WHEN 과 np.where 비교 (1) | 2024.12.20 |
pandas not null (0) | 2024.09.25 |
a,b,c,d 컬럼을가진 df가 있는데 a컬럼읔 drop하고b,c로 distinct 하는데 d컬럼 알파벳오름차순 첫번째값만 남긴다 (0) | 2024.09.20 |
df에서 a컬럼을 distinct 했을때 b컬럼이 true인 c컬럼을 copy b컬럼에 넣어준다 (0) | 2024.09.20 |
Comments