2017년 11월 11일과 9월 5일에 청원이 폭발적으로 많았다. 그렇다면 청원이 많았던 날 또는 청원이 많았던 분야에 투표도 많이 일어났을까? 둘의 관계를 파악하기 위해 먼저 피벗 테이블 기능으로 투표가 가장 많이 일어난 분야를 보자.6
petitions_unique = pd.pivot_table(petitions, index=['category'], aggfunc=np.sum) petitions_best = petitions_unique.sort_values(by='votes', ascending=False).reset_index() petitions_best