이번에는 청원이 얼마 동안 집계됐는지, 청원이 가장 많이 들어온 날은 언제인지 정렬해 보자.
start_df = pd.DataFrame(petitions['start'].value_counts()).reset_index() start_df.columns = ['start', 'counts'] start_df = start_df.sort_values('counts', ascending=False) print('청원 집계: {}일'.format(start_df.shape[0])) start_df.head()
실행 결과
청원 집계: 509일
|
start |
counts |
0 |
2017-11-11 |
9623 |
1 |
2017-09-05 |
5952 |
2 |
2018-01-11 |
3368 |
3 |
2018-02-06 |
2631 |
4 |
2017-11-09 |
2487 |