The below is the character vector:
times <- c("2020-04-15T03:30:05.197Z", "2020-04-15T03:30:05.366Z", "2020-04-15T03:30:05.530Z")
I know that I need to convert it to a lubridate datetime object or a POSIXct object. The following does not work:
as_datetime(link_log$createdAt,
format = "%Y-%m-%d%T%H:%M:%S")