如何使用strptime
或任何其他函数在R中用毫秒来解析时间戳?
time[1]
# [1] "2010-01-15 13:55:23.975"
strptime(time[1], format="%Y-%m-%d %H:%M:%S.%f")
# [1] NA
strptime(time[1], format="%Y-%m-%d %H:%M:%S")
# [1] "2010-01-15 13:55:23"`
答案 0 :(得分:104)
由?strptime
帮助文件提供(示例已更改为您的值):
z <- strptime("2010-01-15 13:55:23.975", "%Y-%m-%d %H:%M:%OS")
z # prints without fractional seconds
op <- options(digits.secs=3)
z
options(op) #reset options
答案 1 :(得分:29)
您还可以使用strptime(time[1], "%OSn")
,其中0 <= n <= 6,而无需设置digits.secs
。