I have a table of time durations in hms format. The number of hours can be greater than 24. Parsing this column with col_time fails with
Warning: 1 parsing failure.
row col expected actual
5 Wallclock valid date 24:56:18.90
My workaround is to use col_string and then parse the time format with hms(roll=TRUE). My suggestion for possible solutions would be to either add a col_duration parser, or add a roll=TRUE parameter to col_time.
I have a table of time durations in hms format. The number of hours can be greater than 24. Parsing this column with
col_timefails withMy workaround is to use
col_stringand then parse the time format withhms(roll=TRUE). My suggestion for possible solutions would be to either add acol_durationparser, or add aroll=TRUEparameter tocol_time.