通用 XTS 端点函数
Generic XTS Endpoints Function
是否有一个函数可以 returns 索引任何整数时间增量?对于xts,有'days'、'weekdays'等。但是如果我想要2天,6天呢?
endpoints
函数为此有一个参数 (k
):
library(xts)
data(sample_matrix)
x <- as.xts(sample_matrix)
endpoints(x, "months")
# [1] 0 30 58 89 119 150 180
endpoints(x, "months", k=2)
# [1] 0 58 119 180
endpoints(x, "months", k=3)
# [1] 0 89 180
是否有一个函数可以 returns 索引任何整数时间增量?对于xts,有'days'、'weekdays'等。但是如果我想要2天,6天呢?
endpoints
函数为此有一个参数 (k
):
library(xts)
data(sample_matrix)
x <- as.xts(sample_matrix)
endpoints(x, "months")
# [1] 0 30 58 89 119 150 180
endpoints(x, "months", k=2)
# [1] 0 58 119 180
endpoints(x, "months", k=3)
# [1] 0 89 180