I currently have a column of time in HH:MM:SS format and need to convert it to a numeric hour value
[1] "0:00:00" "0:10:00" "0:20:00" "0:30:00" "0:40:00"
[6] "0:50:00" "1:00:00" "1:10:00" "1:20:00" "1:30:00"
[11] "1:40:00" "1:50:00" "2:00:00" "2:10:00" "2:20:00"
I was going to use the program lubridate
but is there a more efficient way to do this?