回答編集履歴
1
修正
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
`time`列が**文字列なら**以下のような感じで行を抽出できます。
|
2
|
+
|
3
|
+
行位置で抽出したい場合は`ret = df.iloc[2:,:]`という感じでできます。
|
2
4
|
|
3
5
|
```Python
|
4
6
|
|
@@ -14,9 +16,11 @@
|
|
14
16
|
|
15
17
|
|
16
18
|
|
17
|
-
ret = df[df.index >= '2012-03-21 04:00:00+00:00']
|
19
|
+
#ret = df[df.index >= '2012-03-21 04:00:00+00:00']
|
18
20
|
|
19
21
|
#ret = df[df.index >= pd.to_datetime('2012-03-21 04:00:00+00:00')]
|
22
|
+
|
23
|
+
ret = df.iloc[2:,:]
|
20
24
|
|
21
25
|
print(ret)
|
22
26
|
|