在 R 中按周聚合
在 RI 中,经常按月汇总每日数据(在 zoo
中),使用如下内容:
result <-aggregate(x, as.yearmon, "mean", na.rm=TRUE )
有什么方法可以让我按周完成这个任务吗?
In R I frequently aggregate daily data (in a zoo
) by month, using something like this:
result <- aggregate(x, as.yearmon, "mean", na.rm=TRUE)
Is there a way that I can do this by week?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用
xts
中的apply.weekly
函数。The easiest thing to do is to use the
apply.weekly
function fromxts
.