一是充分披露。我试图在 MS Access 中使用相关子查询严格执行此操作,并在此帖子12 个月移动平均值(按人)上获得了一些帮助,日期。我最初认为我的数据足够小,可以通过,但它太糟糕了。作为替代方案,我将尝试在 R 中运行它,然后将结果写入 MS Access 中的新表。我有数据,因此我有以下字段:
rep, cyc_date, amt
按照 Andrie 的 5 年滚动周期(而不是 5 年平均值)的链接示例R:计算面板数据中的 5 年平均值,我试图amt
通过rep
. 这是我的代码:
library(zoo)
library(plyr)
library(RODBC)
# Pull data from local MS Access database. The referenced sqlFetch is a query
# that pulls the data, ordered by `rep`, then `cyc_date`
channel <- odbcConnectAccess2007("C://MyDB.accdb")
data <- data.frame(sqlFetch(channel, "MyView"))
# Ensure coercion of `cyc_date` to date type
data$cyc_date <- as.Date(data$cyc_date)
# Function (take from post above)
rollmean12 <- function(x) {
rollmean(x, 12)
}
# Calculate rolling average by person
rollvec <- ddply(data, .(data$rep), rollmean12(data$amt))
不幸的是,这不起作用。我收到以下错误:
Error in llply(.data = .data, .fun = .fun, ..., .progress = .progress, :
.fun is not a function.
我不确定为什么会这样。我需要显式转换data
为zoo
对象吗?如果是这样,不确定如何处理由该person_id
字段产生的额外维度。任何帮助将不胜感激。