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
- 다이어트
- 유니티
- PER
- ubuntu
- javascript
- GIT
- PyQt5
- 날짜
- MySQL
- tensorflow
- ASP
- IOS
- flutter
- pandas
- 함수
- Unity
- Linux
- PyQt
- Excel
- node.js
- port
- 리눅스
- 라즈베리파이
- python
- 맛집
- sqlite
- MS-SQL
- urllib
- mssql
- swift
Archives
목록2024/12/18 (1)
아미(아름다운미소)
boolean 예외처리
import pandas as pdimport numpy as np# 예시 DataFrame 생성data = { 'col1': ['True', 'FALSE', None, 'true', 'False'], # 문자열로 표현된 boolean 'col2': [True, False, None, 'true', 'false'], # 실제 boolean 값 'col3': [1, 0, None, 1, 0] # 이 컬럼은 boolean이 아님}df = pd.DataFrame(data)# 컬럼 타입 정의 (boolean 타입으로 처리할 컬럼)dict_types = { 'col1': 'boolean', 'col2': 'boolean', ..
랭귀지/pandas
2024. 12. 18. 15:53