有没有一种方法可以同时遍历所有值,但为每个变量分别存储每个值?

时间:2020-06-12 09:24:00

标签: list loops for-loop vector

我在“ sub”和下面的for循环中具有以下组: $ vocab:整数1 0 1 1 0 1 0 0 1 1 ... $ other:int 0 1 0 0 1 0 1 1 0 0 ...

for (j in 1:nrow(sub)) {
 if data[(study_data[,"sub"] == "1"),]{
   v1 <-metagen(mean,
           sd,           comb.fixed = FALSE,
           comb.random = TRUE,
           prediction=TRUE,
           sm="SMD")
#how to store the output of this so that it corresponds to either vocab and other?

是否有一种方法可以索引for循环,以便在每行均为1(因此vocab = 1而other = 1)的情况下遍历所有实例,并保存与vocab组的结果相对应的metagen函数的输出还有另一列的结果?

不胜感激,在此先感谢您!

0 个答案:

没有答案