我的数据看起来像下面这个人。
> head(data)
open high low close
2013-06-20 09:31:00 275.50 276.00 275.08 275.65
2013-06-20 09:32:00 275.61 276.88 275.61 276.67
2013-06-20 09:33:00 276.67 276.72 275.95 276.62
2013-06-20 09:34:00 276.48 277.43 276.27 277.00
2013-06-20 09:35:00 277.00 278.00 277.00 278.00
2013-06-20 09:36:00 277.83 277.97 276.58 277.29
我通过输入以下内容获得唯一天数:
length(levels(as.factor(floor(as.numeric(julian(index(data)))))))
有一个更好的方法吗?我希望有一个 numdays.zoo() 函数或其他东西。