gpt4 book ai didi

r - 如何解析毫秒?

转载 作者:行者123 更新时间:2023-12-01 23:14:10 26 4
gpt4 key购买 nike

如何使用 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"`

最佳答案

?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

关于r - 如何解析毫秒?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2150138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com