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
- 파이썬
- 머신러닝인강
- vscode설치
- Python
- get_dummies
- OneHotEncoding
- statsmodels
- 인공지능공부
- 코드프레소체험단
- Codepresso
- 인공지능
- 노션활용법
- ai인강
- 코드프레소
- windowd
- 코딩인강추천
- 더미변수화
- notiondivider
- 유데미코리아
- 인터넷강의
- 머신러닝
- beauify
- python설치하기
- vsdcode
- 딥러닝강의
- 평생수강
- 머신러닝최적화
- 그리드서치
- inlineequation
- 노션구분선
Archives
- Today
- Total
나를 찾아가는 길
[Python] datetime 년도, 월, 일, 요일 불러오기 본문
seoul['date']=pd.to_datetime(seoul['날짜'],format='%Y-%m-%d')
seoul['year'] = seoul.date.dt.year #연도
seoul['month'] = seoul.date.dt.month #월
seoul['day'] = seoul.date.dt.day #일
seoul['week'] = seoul.date.dt.day_name() # 요일
'Python > 공부-ing' 카테고리의 다른 글
[Python] numpy.random (0) | 2022.02.04 |
---|---|
[Python] warnings 문구 없애기 (0) | 2022.01.29 |
[Python]열,행 삭제 dataframe drop & del (0) | 2022.01.28 |
[Python] 문자열 출력 format (0) | 2022.01.28 |
[Python] 머신러닝 용어: 파라미터와 하이퍼 파라미터 (0) | 2022.01.27 |
Comments