去年,我使用下面的代码将字符串转换为日期时间并且它工作,但现在我在运行后得到了意想不到的结果strptime
。
Data <- structure(list(time = c("12:00 AM", "1:00 AM", "2:00 AM",
"3:00 AM", "4:00 AM", "5:00 AM", "6:00 AM", "7:00 AM", "8:00 AM",
"9:00 AM", "10:00 AM", "11:00 AM")),
.Names = "time", class = "data.frame", row.names = c(NA, -12L))
为什么这会给我来自 strptime 的预期结果:
strptime(Data$time[1:10], format="%l:%M %p")
# [1] "2013-03-01 00:00:00" "2013-03-01 01:00:00" "2013-03-01 02:00:00"
# [4] "2013-03-01 03:00:00" "2013-03-01 04:00:00" "2013-03-01 05:00:00"
# [7] "2013-03-01 06:00:00" "2013-03-01 07:00:00" "2013-03-01 08:00:00"
# [10] "2013-03-01 09:00:00"
但是当我尝试用新的数据格式替换现有数据时,我收到警告和以下意外结果:
Data$time[1:10] <- strptime(Data$time[1:10], format="%l:%M %p")
# Warning message:
# In Data$time[1:10] <- strptime(Data$time[1:10], format = "%l:%M %p") :
# number of items to replace is not a multiple of replacement length
Data
# time
# 1 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
# 2 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
# 3 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
# 4 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
# 5 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
# 6 113, 113, 113, 113, 113, 113, 113, 113, 113, 113
# 7 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
# 8 59, 59, 59, 59, 59, 59, 59, 59, 59, 59
# 9 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
# 10 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
# 11 10:00 AM
# 12 11:00 AM
当我运行上述Data$time[1:10] <- strptime(Data$time[1:10], format="%l:%M %p")
问题中的代码以及View(Data)
标准 RGui 中的结果数据时,它看起来与预期的一样,但是当我View(Data)
在 RStudio 中时,会显示上面的意外结果。在 RGui 和 RStudio 中,函数class(Data$time)
返回[1] "POSIXlt" "POSIXt"
并按预期运行。这似乎是在 RStudio 中显示数据的问题。