質問編集履歴

1

書いている途中で投稿してしまいました。

2020/05/10 04:02

投稿

super.easy.to
super.easy.to

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1 +1,73 @@
1
1
  機械学習においてgooglelsheetのデータを読み込みたかったのですが、色々なエラーが出てうまくいきません。以下のコードにおいてはじめはengine="python"の部分はなく、その時にはInitializing from file failedとのエラーが出ました。
2
+
3
+
4
+
5
+ 実際のコード
6
+
7
+ ```python
8
+
9
+ from google.colab import drive
10
+
11
+ drive.mount('/content/drive')
12
+
13
+
14
+
15
+ import pandas as pd
16
+
17
+ import numpy as np
18
+
19
+ import os
20
+
21
+
22
+
23
+ # エクセルを読み込む
24
+
25
+ df_train = pd.read_csv("/content/drive/My Drive/titdata.gsheet" engine="python)
26
+
27
+ ```
28
+
29
+
30
+
31
+ エラー
32
+
33
+ ```
34
+
35
+ OSError Traceback (most recent call last)
36
+
37
+ <ipython-input-15-cbfd4dcd1655> in <module>()
38
+
39
+ 7
40
+
41
+ 8 # エクセルを読み込む
42
+
43
+ ----> 9 df_train = pd.read_csv("/content/drive/My Drive/titdata.gsheet")
44
+
45
+
46
+
47
+ 4 frames
48
+
49
+ /usr/local/lib/python3.6/dist-packages/pandas/io/parsers.py in __init__(self, src, **kwds)
50
+
51
+ 1889 kwds["usecols"] = self.usecols
52
+
53
+ 1890
54
+
55
+ -> 1891 self._reader = parsers.TextReader(src, **kwds)
56
+
57
+ 1892 self.unnamed_cols = self._reader.unnamed_cols
58
+
59
+ 1893
60
+
61
+
62
+
63
+ pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader.__cinit__()
64
+
65
+
66
+
67
+ pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader._setup_parser_source()
68
+
69
+
70
+
71
+ OSError: Initializing from file failed
72
+
73
+ ```