R XTS 包 to.mines3
我尝试使用 xts 包中的“to.minutes3”函数来分段我的数据。
该函数确实将时间列正确地放入所需的间隔中。但数据列变为“开盘”、“收盘”、“最高”和“最低”。有没有办法告诉函数对同一区间内的数据点进行平均?
谢谢, 德里克
I try am trying to use the "to.minutes3" function in the xts package to segment my data.
This function does correctly put the time column into the desired intervals. But data columns becomes "open" , "close", "high" and "low". Is there are way tell the function to average the data points that fall into the same interval?
Thanks,
Derek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要
period.apply
。假设您的数据位于对象x
中并且比3分钟更频繁,下面的代码将为您提供每个不同的、不重叠的3分钟间隔的平均值。You want
period.apply
. Assuming your data are in objectx
and are more frequent than 3-minutes, the code below will give you a mean for each distinct, non-overlapping, 3-minute interval.在我看来,答案是否定的,无需完全更改该功能,基于 help("to.period") 。
to.months
使用to.period
,它对 OHLC 参数表示以下内容:因此不支持其他返回值。
It looks to me like the answer is no, without completely changing that function, based on help("to.period").
to.minutes
usesto.period
, which says the following w.r.t. the OHLC parameter:So other return values aren't supported.