i have measurements in a dataframe. Columns are different objects. Index is a datetime64 index. Now for each date I have a measurement in total seconds (int) for each column.
Everything plots quite nice, my only problem instead of showing 6000 seconds on the y axis i want to show 1:40 to indicate 1 hour and 40 minutes.
How can I actually achieve this?
day Object1 Object2
2017-01-01 6000 1234
I want
day Object1 Object2
2017-01-01 1:40:00 00:20:34
Can you hint me on how to do it