일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 유데미
- Game
- udemy
- twilio
- class
- 웹페이지
- Tequila
- 상태코드
- 계산기
- 프로젝트
- HTML
- 쉬티
- Python
- API플랫폼
- HTTP
- API
- 파싱
- 웹크롤링
- 파이썬
- Endpoint
- SMTP
- 오류
- phython
- 게임
- 최저가
- Sheety
- ndarray
- Pygame
- 부트스트랩
- 프로그램
Archives
- Today
- Total
목록ValueError: could not convert string to float (1)
데이터 분석가
ValueError: could not convert string to float: '2013-01-01'
ValueError: could not convert string to float: '2013-01-01' Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings... 해결방법 날짜를 pandas의 datetime 타입으로 변환: df['date'] = df['date'].apply(lambda x: pd.to_datetime(x)) 연, 월, 일을 각각의 별도 컬럼으로 분리: df['year'] = df['date'].apply(lambda x: pd.to_datetime(x).year) df['month'] = df['date'].apply(lambda x: pd.to_d..
파이썬 (python) 에러코드 모음
2023. 8. 22. 22:11