AttributeError: 'Series' object has no attribute 'strftime'

SOOYEON·2022년 7월 30일
0

pandas

목록 보기
5/37
df['Month'] = df['Date'].strftime('%Y-%m')
AttributeError: 'Series' object has no attribute 'strftime'

날짜 컬럼에서 strftime 메서드를 사용하여 년-월 데이터 컬럼을 생성할 때 발생한 에러

.dt 입력

df['Month'] = df['Date'].dt.strftime('%Y-%m')

참고

0개의 댓글