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
}
よろしく