TypeError: 'TimeGrouper' object is not callable
에러 메세지 TypeError: 'TimeGrouper' object is not callable 해석: TypeError: 'TimeGrouper' 객체는 호출할 수 없습니다.이 에러는 groupby와 resample을 함께 사용할 때, resample을 먼저 호출하면 발생하는 오류입니다.에러 발생 상황 다음은 에러가 발생하는 상황을 예시와 함께 살펴보겠습니다.import pandas as pd# 날짜 범위 생성idx = pd.date_range('2023-01-01', periods=6, freq='20D 9h 10min')# 데이터 프레임 생성df = pd.DataFrame( {'날짜': idx, '금액': [10000, 20000, 30000, 40000, 50000, 60000],..
2023. 8. 23.