I have two variables in the data frame waking
in date time format that I would like to subtract.
waking['diff2'] = (waking['waketime1'] - waking['waketime2'])
However, I get the error: unsupported operand type(s) for -: 'datetime.time' and 'datetime.time'
How do I overcome this?