https://qiita.com/over_di/items/1270d3737e0a81719e56
このサイトをもとに時間のみ取得しようとしたのですが、
AttributeError: 'DatetimeIndex' object has no attribute 'dt'
このエラーが出てしまいます。
python
1import matplotlib.pyplot as plt 2import matplotlib.dates as mdates 3import openpyxl 4import pandas as pd 5import datetime 6 7month = [] 8day = [] 9day_str = [] 10hour = [] 11minu = [] 12time = [] 13a = 0 14 15file = openpyxl.load_workbook("****") 16sheet = file["Sheet1"] 17 18for i in range(1, 32): 19 try: 20 month.append(int(sheet["A" + str(i)].value)) 21 day.append(int(sheet["B" + str(i)].value)) 22 hour.append(int(sheet["C" + str(i)].value)) 23 minu.append(int(sheet["D" + str(i)].value)) 24 25 day_str.append(str(month[a]) + "/" + str(day[a])) 26 time.append(str(hour[a]) + ":" + str(minu[a])) 27 a += 1 28 except: 29 pass 30 31time = pd.to_datetime(time, format = "%H:%M").dt.time 32print(time)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/30 07:48
2021/09/30 07:53
2021/10/01 00:49