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
- centos7
- dreamhack
- VS Code 오류
- 인프런
- nmcli
- Python
- error
- 풀이
- ubuntu
- 빅데이터 분석기사
- mariadb
- pwnable
- Linux
- 빅데이터분석기사
- Cloud
- pandas
- 빅분기 실기
- AWS
- 클라우드
- tcache
- 빅데이터 분석기사 실기
- ios frida
- Dreamhack.io
- 빅데이터분석기사 실기
- [EduAtoZ]
- 워게임
- wireshark
- FSB
- AWS Cloud
- 보안뉴스
Archives
- Today
- Total
0netw0m1ra
[010] datatime category - dtype 변경 본문
1. datetime, category 타입변경
- pd.to_datetime(Series, format='형식')
%Y : 4글자 년도, %y : 2글자 년도, %m : 2글자 월, %d : 2글자 일
다양한 형식 문자들 : https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior
format의 지정이 필수는 아님
- pd.Categorical(Series, categories=['범주1', '범주2', ...], ordered=None)
ordered=True 사용 시 순서있는 범주형, 정렬시 정해진 순서가 사용됨
categories, ordered의 지정이 필수는 아님
<출처>
인프런 - [EduAtoZ] 빅데이터분석기사 실기 대비 Part2. datatime category의 dtype 변경
'빅데이터분석기사 실기' 카테고리의 다른 글
[012] 데이터 검색(boolean indexing) (0) | 2022.06.09 |
---|---|
[011] 데이터 정렬 - top3, top5 (0) | 2022.06.09 |
[009] 데이터 및 dtype 변경 (0) | 2022.06.08 |
[008] pandas 데이터 구조 (0) | 2022.06.08 |
[007] python - map 함수, comprehension (0) | 2022.06.07 |