如何在for循环中进行rbind?

How to rbind in for loop?

如您所见,我有一个问题。 我真的很想在 for 循环中执行 rbind 函数。 但是下面出现错误。

我的数据集命名为 tt_1tt_2 ... 代码如下。 我怎样才能rbind那些数据集?

for ( jj in 1 : 84) {
         tt_count <- rbind.data.frame(tt_count, tt_jj)
         count.maxTemp <- tt_count
}

Error in rbind.data.frame(tt_count, tt_jj) : object 'tt_jj' not found

只需猜测,您就可以使用名为 myList 的数据帧列表来解决此问题:

tt_count <- NULL # the dataframe to fill  
for (i in length(myList)) {
tt_count <- rbind(tt_count, myList[[i]]) 
}