gpt4 book ai didi

r - 获取自 R 中 Epoch 以来的天数、月数和周数

转载 作者:行者123 更新时间:2023-12-02 07:19:48 25 4
gpt4 key购买 nike

在 R 中获取自 Epoch 时间以来的天数、月数和周数的最佳方法是什么?

(Java 存在解决方案:Get the number of days, weeks, and months, since Epoch in Java)

我知道从纪元中获取秒数,但是如何获取周数?

as.integer( Sys.time())   #.... gives number of seconds since epoch time

最佳答案

一种选择是使用 lubridate::interval 作为:

library(lubridate)


span <- interval(ymd_hms("1970-01-01 00:00:00"), Sys.time())

as.period(span, unit = "days")
#[1] "17622d 19H 57M 10.5912010669708S"

as.period(span, unit = "months")
#[1] "579m 0d 19H 57M 10.5912010669708S"


as.period(span, unit = "years")
#[1] "48y 3m 0d 19H 57M 10.5912010669708S"

关于r - 获取自 R 中 Epoch 以来的天数、月数和周数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49601805/

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