Returning to R and was wondering about this problem I am having with time. I am quality checking my data and tried to convert a time only column with lubridate however it is unable to parse it.
My data for example looks like this
Column A | Column B |
---|---|
A | 01:02:00.0000000 |
B | 10:22:00.0000000 |
When I use as_datetime(…) on the column it returns with NAs. How would I overcome this issue?