gpt4 book ai didi

r - 如何计算两个日期之间的周差?

转载 作者:行者123 更新时间:2023-12-05 09:20:15 25 4
gpt4 key购买 nike

如何使用 lubridate 函数计算 2 个日期之间的周差?

最佳答案

一种专门使用 lubridate 包来做到这一点的方法:

library(lubridate)

# Create sample interval
> span <- interval(as.POSIXct("2000-01-01"), as.POSIXct("2016-01-01"))
> span
[1] 2000-01-01 PST--2016-01-01 PST

> t <- as.period(span, unit="day")
> t
[1] "5844d 0H 0M 0S"

> t / as.period(dweeks(1))
estimate only: convert durations to intervals for accuracy
estimate only: convert to intervals for accuracy
[1] 834.8571
>

关于r - 如何计算两个日期之间的周差?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38384646/

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