gpt4 book ai didi

r - 将日期中的月份中的第一天更改为第一天(01)

转载 作者:行者123 更新时间:2023-12-03 14:31:59 25 4
gpt4 key购买 nike

我想将Date中的月份设置为当前月份的开始日期(01)。
现在,我使用以下内容:

currentDate <- Sys.Date()  #for getting current system date eg:2012-11-06
formatDate <- format(currentDate, "%Y-%m") #it return 2012-11
startDate <- as.Date(paste(formatDate, "-01", sep = ""))
# 2012-11-01

有没有简单的方法可以做到这一点?

最佳答案

是的,使用cut函数可以做到这一点:

cut(Sys.Date(), "month")
[1] 2012-11-01
Levels: 2012-11-01

关于r - 将日期中的月份中的第一天更改为第一天(01),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13247993/

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