我正在尝试为很多数据集执行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]])
答案 0 :(得分:0)
这样的事情应该有效:
tests <- lapply(1:length(x), function(i) t.test(dat$velocity,x[[i]][[2]]))
tests
是list
长度的列表length(x)
。您可以使用tests[[1]]
访问每个t检验结果。