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
- IOS
- ubuntu
- 날짜
- pandas
- tensorflow
- 유니티
- sqlite
- flutter
- PER
- swift
- 라즈베리파이
- Excel
- urllib
- ASP
- node.js
- 맛집
- javascript
- MS-SQL
- mssql
- port
- MySQL
- GIT
- Unity
- 함수
- 리눅스
- PyQt
- Linux
- python
- PyQt5
- 다이어트
Archives
목록2024/07/14 (1)
아미(아름다운미소)
groupby 문자열포함 sum
Int float 문자 Noneimport pandas as pddf = pd.DataFrame({ 'A': ['a', 'a', 'b', 'b', 'c', 'c','x'], 'B': ['x', 'y', 'x', 'y', 'x', 'y','y'], 'C': [10.5, '20', 30.2, 'aaa', 50.1, '60',None]})# A, B 컬럼을 문자열로 변환df['A'] = df['A'].astype(str)df['B'] = df['B'].astype(str)# C 컬럼의 숫자와 문자열 처리df['C'] = df['C'].apply(lambda x: int(float(x)) if str(x).replace('.', '').isdigit() else 0)# A, B 컬럼으로 grou..
랭귀지/pandas
2024. 7. 14. 15:13