df['Month'] = df['Date'].strftime('%Y-%m')
AttributeError: 'Series' object has no attribute 'strftime'
날짜 컬럼에서 strftime 메서드를 사용하여 년-월 데이터 컬럼을 생성할 때 발생한 에러
.dt
df['Month'] = df['Date'].dt.strftime('%Y-%m')
참고