質問するログイン新規登録

質問編集履歴

1

エラーを詳細に示しました

2018/09/07 02:35

投稿

Kalman_taku
Kalman_taku

スコア41

title CHANGED
File without changes
body CHANGED
@@ -11,6 +11,18 @@
11
11
  pandas.core.series.Series
12
12
  ---------------------------------------------------------------------------
13
13
  AttributeError Traceback (most recent call last)
14
+ <ipython-input-43-d9fbc4c735f3> in <module>()
15
+ 6
16
+ 7 display(type(df_event["開始時間 - 時:分:秒.ミリ秒"]))
17
+ ----> 8 display(df_event["開始時間 - 時:分:秒.ミリ秒"].time)
18
+
19
+ ~/.pyenv/versions/anaconda3-4.4.0/lib/python3.6/site-packages/pandas/core/generic.py in __getattr__(self, name)
20
+ 4374 if self._info_axis._can_hold_identifiers_and_holds_name(name):
21
+ 4375 return self[name]
22
+ -> 4376 return object.__getattribute__(self, name)
23
+ 4377
24
+ 4378 def __setattr__(self, name, value):
25
+
14
26
  AttributeError: 'Series' object has no attribute 'time'
15
27
  ```
16
28