我正在尝试将我的移动平均函数应用于一个变量,如下所示:
Fonction.mm <- function(x)
{
filter(x, poids, sides=1, method="conv")
}
numero<-1:nrow(data)
tapply(numero, data$td, Fonction.mm)
data$td
这是一个具有 2 个类别的字符变量。
但这不起作用得到错误:
Error in tapply(numero, data$td, Fonction.mm) :
arguments must have same length
非常感谢!