質問編集履歴

1

データフレームの情報の追加とコードのミスを変更いたしました。

2021/12/24 02:37

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,20 @@
1
- ```ここに言語を入力
1
+ ```
2
+
3
+ test(dataframe)
4
+
5
+
6
+
7
+ index day. views estimatedMinutesWatched video_id min_view_day
8
+
9
+ 1 2021-12-19 7558 12185 fYCIE9z8bJ8 2021-12-19
10
+
11
+ 2 2021-12-20 1669 2792 fYCIE9z8bJ8 2021-12-19
12
+
13
+ 3 2021-12-18 3014 1973 eKPxIqM5S9M 2021-12-19
14
+
15
+ 4 2021-12-19 2379 1543 eKPxIqM5S9M 2021-12-19
16
+
17
+
2
18
 
3
19
  index int64
4
20
 
@@ -24,17 +40,13 @@
24
40
 
25
41
 
26
42
 
27
-
28
-
29
- 上記のようなデータフレームがあり、min_view_dayとdayを比較してdayの方が日付が最近のものだけindexを抜き出したいです。
43
+ 上記のようなデータフレームがあり、min_view_dayとdayを比較してdayの方が日付が最近のものだけindexを抜き出したいです。(上記の例でいうとIndexの3のみ抜き出したい)
30
44
 
31
45
 
32
46
 
33
47
  ```python
34
48
 
35
- test_index = test.index[dailyVideoData_merge['views'] < test['min_view_day']]
49
+ test_index = test.index[test['views'] < test['min_view_day']]
36
-
37
-
38
50
 
39
51
  ```
40
52