Cara Mengatur DataFrame sebagai nilai dalam daftar di R

mylist <- list()
mylist[[1]] <- mtcars
mylist[[2]] <- data.frame(a = rnorm(50), b = runif(50))
# the key is the [["name"]] that saves all the row (the ["name"] defaults the first)
Grumpy Goose