
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
숙제에서 히트맵을 사용해보고 싶은데 피봇불러오는데 부터 문제가 생깁니다.
숙제에서 히트맵을 응용할수 있는 코드를 알려주실 수 있나요?

작성한 코드 및 에러 메세지
코드 (제 데이터 이름은 homework_3 입니다.)
homework_3_pivot_table = pd.pivot_table(homework_3), values='user_id',
index=['done_date_time_weekday'],
columns=['done_date_time_hour'],
aggfunc="count").agg(weeks)
homework_3_pivot_table
에러메세지
File "<ipython-input-53-de361359ce76>", line 4
aggfunc="count").agg(weeks)
^
SyntaxError: unmatched ')'
