-2

我正在尝试对很多数据集进行 t.test,我希望它们包含在单个输出中到目前为止,我正在做一个类似于这个的 t.test

test1=t.test(dat$velocity,x[[1]][[2]])
test2=t.test(dat$velocity,x[[2]][[2]])
test3=t.test(dat$velocity,x[[3]][[2]])
4

1 回答 1

0

像这样的东西应该工作:

tests <- lapply(1:length(x), function(i) t.test(dat$velocity,x[[i]][[2]]))

tests是一个list长度列表length(x)。您可以使用 访问每个 t 检验结果tests[[1]]

于 2013-03-27T06:33:06.583 回答