让我们准备样本数据:
month <- seq.Date(from=Sys.Date()-5,to=Sys.Date()+10,by="day")
# [1] "2018-06-18" "2018-06-19" "2018-06-20" "2018-06-21" "2018-06-22" "2018-06-23" "2018-06-24" "2018-06-25" "2018-06-26"
# [10] "2018-06-27" "2018-06-28" "2018-06-29" "2018-06-30" "2018-07-01" "2018-07-02" "2018-07-03"
xts::endpoints
给出每个月最后一次观察的索引,总是从 0 开始:
library(xts)
endpoints(month, "months")
# [1] 0 13 16
因此,如果添加1
,您将获得下个月第一天的索引,并且方便地,0 将是第一个月的第一天的索引:
endpoints(month, "months") + 1
# [1] 1 14 17
最后一个值是没有意义的,所以我们删除它:
head(endpoints(month, "months") + 1, -1)
# [1] 1 14
我们最终得到您的解决方案:
first.values <- month[head(endpoints(month, "months") + 1, -1)]
# [1] "2018-06-18" "2018-07-01"
另一种方法:
month <- as.xts(month)
first_as_list <- lapply(split(month,f="month"), function(x) index(x)[1])
do.call(c,first_as_list)
# [1] "2018-06-18" "2018-07-01"