我有一个如下的数据表,
| season title rating
-- + ------ --------------------- ------
0 | 10 The last one 9.7
1 | 1 The pilot 5.6
2 | 4 The one where estelle 7.8
3 | 10 The last one 9.7
4 | 3 The thumb 10
[5 rows x 3 columns]
这里第 0 行和第 3 行是重复的,我想将第 3 行保留在一边。
在此示例中,我将其尝试为-
DT_X[f.season!=10, :]
它过滤了两个观察值,如下所示,
| season title rating
-- + ------ --------------------- ------
0 | 1 The pilot 5.6
1 | 4 The one where estelle 7.8
2 | 3 The thumb 10
[3 rows x 3 columns]
但是,我希望有一个第一个观察结果,即索引为 0 并过滤掉第三行。
如何在 pydatatable 中实现?如何使用索引检索数据表行?