I have a column - avg_pace
- which I want to use as a time in the format %M %S .%f
(I think that's right for milliseconds, but please correct me).
garmin2 <- garmin %>%
strptime(avg_pace, "%M:%S:.%f")
This doesn't work for me - I keep getting that strptime
can't find avg_pace
- but I've used it elsewhere.