I wanted to convert the following data into minute, but i always land up on error
time = 0:1:19
time1 = df['time']
time2 = time1.hour * 60 + time1.minute + time1.second
I get this error:
"AttributeError: 'Series' object has no attribute 'hour'"