我有一个包含 50 个 data.frame 对象的列表,每个 data.frame 对象包含 20 行。我需要在每次迭代时从每个 data.frame 对象中排除一行或一个向量。
单次迭代可能看起来像这样:
to_exclude <- 0 # 0 will be replaced by the induction variable
training_temp <- lapply(training_data, function(x) {
# Exclude the vector numbered to_exclude
}
问候