I'm trying to split a set of data. Simplified as something like this
test <- data.frame(1:500)
test <- split(test, 1:99, drop = FALSE)
for (i in test){
}
I'm trying to add a column to each of the newly created dataframes, and then wait 60 seconds before doing so for the next set of 99. Upon adding the final row of the new column in the last group, I'd like to re-combine the split dataframes.
I don't know how to reference the newly created "split" dataframes, and I don't know how to add the delay.