-
2/29 TIL스파르타/TIL(Today I Learned) 2024. 2. 29. 21:26
오랜만이다...
오늘은 프로젝트의 발제를 하여 데이터를 살펴보고 뜯어보았다.
1. pd.to_datetime(df['created_at'])를 하여 created_at이라는 object 타입 -> datetime으로 변경을 시도
2. 바로 실패
3. ValueError: time data "2024-01-14 02:35:15.743909+00:00" doesn't match format "%Y-%m-%d %H:%M:%S%z", at position 1351. You might want to try:
- passing `format` if your strings have a consistent format;
- passing `format='ISO8601'` if your strings are all ISO8601 but not necessarily in exactly the same format;
- passing `format='mixed'`, and the format will be inferred for each element individually. You might want to use `dayfirst` alongside this.4. 구글링 검색결과 마지막 초 이후에 세계협정시?가 존재해서 변환에 실패
5. 오류들 중 2번째 방법인 format='ISO8601를 사용
6. 변환 성공~ UTC 기준 datetime으로 변환 완료
'스파르타 > TIL(Today I Learned)' 카테고리의 다른 글
만우절 기념 TIL (0) 2024.04.01 24/3/8 (0) 2024.03.08 2/5 (0) 2024.02.05 1월 마지막 주 ~ 2월 첫째 주 WIL (1) 2024.02.05 2/1 (0) 2024.02.01