我想将数据框列表更改为列表列表,以便能够添加和删除数据框中的元素。我希望最终得到类似的内容:
示例:
> list <- list(list("p"=runif(5),
"n"=round(1000*rnorm(5,5,2))),
list("p"=runif(10),
"n"=round(1000*rnorm(10,5,2))),
list("p"=runif(15),
"n"=round(1000*rnorm(15,5,2)))
)
> class(list[[1]])
[1] "list"
答案 0 :(得分:1)
由于你的问题对我来说不够清楚,我猜你有这样的事情:
List <- list(data.frame(a=1:4, b=4:1),
data.frame(A=2:6, B=6:2))
这是一个data.frames列表,你可以将它作为一个列表:
unlist(lapply(List, as.list), recursive=FALSE)
或列表清单
lapply(List, as.list)
答案 1 :(得分:1)
data.frame实际上是一个列表。你只需要删除该课程。
mylist <- list(df1=data.frame(a=1:10, b=11:20),df2=data.frame(a=c("a","b"), b=c("c","d")))
str(mylist)
# List of 2
# $ df1:'data.frame': 10 obs. of 2 variables:
# ..$ a: int [1:10] 1 2 3 4 5 6 7 8 9 10
# ..$ b: int [1:10] 11 12 13 14 15 16 17 18 19 20
# $ df2:'data.frame': 2 obs. of 2 variables:
# ..$ a: Factor w/ 2 levels "a","b": 1 2
# ..$ b: Factor w/ 2 levels "c","d": 1 2
mylist2 <- lapply(mylist, unclass)
str(mylist2)
# List of 2
# $ df1:List of 2
# ..$ a: int [1:10] 1 2 3 4 5 6 7 8 9 10
# ..$ b: int [1:10] 11 12 13 14 15 16 17 18 19 20
# ..- attr(*, "row.names")= int [1:10] 1 2 3 4 5 6 7 8 9 10
# $ df2:List of 2
# ..$ a: Factor w/ 2 levels "a","b": 1 2
# ..$ b: Factor w/ 2 levels "c","d": 1 2
# ..- attr(*, "row.names")= int [1:2] 1 2