作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想获得亚秒级,所以我使用以下内容:
> options(digits.secs=6)
> as.POSIXlt(df1$Global.Time[5]/1000, origin="1970-01-01", tz="America/Los_Angeles")
[1] "2005-06-15 07:53:42.7 PDT"
为什么输出不包含类似“07:53:42.700000”的内容?
POSIXct
同样的问题:
> as.POSIXct(df1$Global.Time[3]/1000, origin="1970-01-01", tz="America/Los_Angeles")
[1] "2005-06-15 07:53:42.5 PDT"
最佳答案
这个怎么样(根据 Frank 的指示更正):
d <- as.POSIXct(Sys.time())
format(d,"%Y-%m-%d %H:%M:%OS6")
[1] "2015-05-30 18:06:08.693852"
关于r - 如何在 r 中使用 as.POSIXct 或 as.POSIXlt 获取毫秒数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30551807/
我是一名优秀的程序员,十分优秀!