修复 Tibble 中的日期和时间格式

Fix Date and Time formats inside of Tibble

我有几个 CSV 文件,导入时有两列,日期和时间。然而,他们俩都是这样糊涂的:

    Date                Time
03/03/14 00:00:00   12/30/99 09:01:12

即他们都有日期和时间,而他们应该只有一个或另一个。我怎样才能消除那里的额外噪音?

首先,您需要将列强制转换为值得日期和时间的内容,例如 as.POSIXct。您可以使用 format 来提取您想要的日期的任何部分。

x <- c("03/03/14 00:00:00", "12/30/99 09:01:12")
xy <- as.POSIXct(x, format = "%m/%d/%y %H:%M:%S")

> format(xy, "%m/%d/%y")
[1] "03/03/14" "12/30/99"
> format(xy, "%H:%M:%S")
[1] "00:00:00" "09:01:12"