mutate(Time = as.POSIXct(Time, format = "%H:%M:%S"))
I'm currently trying to mutate my time variable to that instead of being a character variable, it is in the as.POSIXct
format. But, everytime I apply this format, I always get this output: 2020-02-29 07:25:00
. The time normally looks like this in just the normal character form: 07:25:00
.
How do I get rid of the date??