回答編集履歴
2
修正
test
CHANGED
@@ -13,6 +13,8 @@
|
|
13
13
|
|
14
14
|
|
15
15
|
df = pd.read_csv("sample.csv", parse_dates=[0])
|
16
|
+
|
17
|
+
# parse_dates=[0] は1列目を datetime 型として解釈するということ
|
16
18
|
|
17
19
|
print(df)
|
18
20
|
|
1
修正
test
CHANGED
@@ -21,6 +21,14 @@
|
|
21
21
|
|
22
22
|
|
23
23
|
## numpy を使う場合
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
[Structured arrays](https://numpy.org/doc/stable/user/basics.rec.html) として読み込むため、dtype に列名と型の指定が必要になります。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
`dtype={"names": ("Date", "Value"), "formats": ("datetime64[us]", "float")`
|
24
32
|
|
25
33
|
|
26
34
|
|