質問編集履歴
2
Excelのデータのフォーマットについて追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,9 @@
|
|
28
28
|
|
29
29
|
データ:
|
30
30
|
|
31
|
-
ExcelのA列には以下のような時系列データがある。
|
31
|
+
ExcelのA列には以下のような時系列データがある。Excelの日付の値のプロパティは標準となっています。
|
32
|
+
|
33
|
+
|
32
34
|
|
33
35
|
date
|
34
36
|
|
1
parse_dateオプション無しの時のエラー内容追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,18 @@
|
|
11
11
|
raise NotImplementedError("parse_dates keyword of read_excel "
|
12
12
|
|
13
13
|
NotImplementedError: parse_dates keyword of read_excel is not implemented
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
parse_dates=['date']を使わなった場合、エラー内容は以下になります:
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
File "C:\Program Files\Anaconda3\lib\site-packages\numpy\core\numeric.py", line 531, in asarray
|
22
|
+
|
23
|
+
return array(a, dtype, copy=False, order=order)
|
24
|
+
|
25
|
+
ValueError: could not convert string to float: '2016/02/25'
|
14
26
|
|
15
27
|
|
16
28
|
|