回答編集履歴

1

集計の単位を間違えました・・修正

2018/09/01 03:42

投稿

magichan
magichan

スコア15898

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```Python
6
6
 
7
- df.groupby(pd.Grouper(key='date', freq='d')).count().reset_index()
7
+ df.groupby(pd.Grouper(key='date', freq='1min')).count().reset_index()
8
8
 
9
9
  ```
10
10