I know that for loops can be avoided almost all the time in R if you understand the language properly, but I'm struggling to find out the clever way of doing this
for (i in 1:100){
AllData[[i]]$Div = NULL
}
Where AllData is a list of 100 lists of various sizes. Can someone clue me in?