i want to peel off exactly one level of a list of list so this should be x = list(list(iris[1:2,]), list(iris[1:2,])) list(iris[1:2,], iris[1:2,])
i want to peel off exactly one level of a list of list
so this should be
x = list(list(iris[1:2,]), list(iris[1:2,]))
list(iris[1:2,], iris[1:2,])