I would like to convert data of type timedelta64 in a Pandas Series into timedelta64 to hours.
To do this I'd like to access the .seconds or .days attribute of a timedelta64 so that I can convert these unit myself as per this SO post.
However, when I select the data using df['col'] I get an attribute error when I try to use .seconds or .days despite its dtype being <m8[ns] (which I believe represents timedelta64).
Is there another step that I need to do?