Say I have a column in my data frame containing only objects of strings:
"00:20:10"
"02:12:10"
etc
I want to just convert these strings to the corresponding time type object (in chron library) so I can do things like calculate the mean time etc. How can I do this?
My attempt is just do times(data column) but I get a decimal value.