R XTS 包 to.mines3

发布于 2024-09-19 18:08:35 字数 139 浏览 1 评论 0原文

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡莣 2024-09-26 18:08:35

您需要period.apply。假设您的数据位于对象x中并且比3分钟更频繁,下面的代码将为您提供每个不同的、不重叠的3分钟间隔的平均值。

> period.apply(x, endpoints(x,k=3,"minutes"), mean)

You want period.apply. Assuming your data are in object x and are more frequent than 3-minutes, the code below will give you a mean for each distinct, non-overlapping, 3-minute interval.

> period.apply(x, endpoints(x,k=3,"minutes"), mean)
长不大的小祸害 2024-09-26 18:08:35

在我看来,答案是否定的,无需完全更改该功能,基于 help("to.period") 。 to.months 使用 to.period,它对 OHLC 参数表示以下内容:

OHLC OHLC 对象应该是
回来了? (目前仅 OHLC=TRUE
支持)

因此不支持其他返回值。

It looks to me like the answer is no, without completely changing that function, based on help("to.period"). to.minutes uses to.period, which says the following w.r.t. the OHLC parameter:

OHLC should an OHLC object be
returned? (only OHLC=TRUE currently
supported)

So other return values aren't supported.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文