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