Hi, I have a dataframe with a character time variable. it has values like "18:47:48" "18:52:48" "18:57:48" "19:02:48" "19:07:48" "19:12:48". I would like to convert it in to a numeric column as it is.
I did try NUM_TIME=hms(df$CHAR_TIME), but it gives me both date+time values, dont know why is it getting the date column and hms is giving it inthe form of list.
kindly help in getting a numeric time column that looks alike the character time column values mentioned above.