gpt4 book ai didi

r - 在 R 中按周、月等聚合数据

转载 作者:行者123 更新时间:2023-12-01 07:14:01 25 4
gpt4 key购买 nike

我需要汇总我的数据 Kg

            Data  Kg
1 2013-03-01 271
2 2013-03-06 374
3 2013-03-07 51
4 2013-03-12 210
5 2013-03-13 698
6 2013-03-15 328

按周或月。我找到了这个答案 here in stackoverflow ,但我真的不明白答案。谁能告诉我我该怎么办这个案子。谢谢

最佳答案

提到的答案建议您应该使用 xts包裹。

library(xts)
## create you zoo objects using your data
## you replace text argument by read.zoo(yourfile, header = TRUE)
x.zoo <- read.zoo(text=' Data Kg
+ 1 2013-03-01 271
+ 2 2013-03-06 374
+ 3 2013-03-07 51
+ 4 2013-03-12 210
+ 5 2013-03-13 698
+ 6 2013-03-15 328',header=TRUE)
### then aggregate
apply.weekly(x.zoo, mean) ## per week
apply.monthly(x.zoo, mean) ## per month

??apply.xxxly :

Essentially a wrapper to the xts functions endpoints and period.apply, mainly as a convenience.

关于r - 在 R 中按周、月等聚合数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19716244/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com