gpt4 book ai didi

R计算月末

转载 作者:行者123 更新时间:2023-12-02 05:29:47 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Create end of the month date from a date variable

(8 个回答)


4年前关闭。




我有一个关于日期结束的问题,我在下面解释。
这是我的示例数据:

DATE
2015-01-01
2015-02-05
2015-09-29
2016-02-07
2016-07-24
2016-12-16

我知道如果我想要那个月的总天数,代码是:
days_in_month(DATE)

但是,我想要的是以下内容:
DATE            DATE_Month_End
2015-01-01 2015-01-31
2015-02-05 2015-02-28
2015-09-29 2015-09-30
2016-02-07 2016-02-29
2016-07-24 2016-07-31
2016-12-16 2016-12-31

有什么建议吗?

最佳答案

你可以这样做:

library(lubridate)

DATE$DATE_Month_End <- DATE$DATE
day(DATE$DATE_Month_End) <- days_in_month(DATE$DATE)

day() <-让您在保留年份和月份的同时更改日期。

关于R计算月末,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43772996/

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