价格是一个xts对象
period.ends = endpoints(prices, 'months',k=1)
使用此行我会在时间序列中找到该月最后一天的位置。
如何查找月份第一天的位置(不一定是每月的1个月)?第二天?
谢谢
答案 0 :(得分:2)
startpoints <- function (x, on = "months", k = 1) {
head(endpoints(x, on, k) + 1, -1)
}
period.starts = startpoints(prices, 'months', k=1)
另请参阅:xts:::startof
和xts::firstof