This question already has answers here:
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/

10-11 02:48