我有一个混合了数据帧,小标题和空列表的列表。在应用bind_rows
附加其余数据帧之前,如何删除小标题和空列表?
我尝试使用delete.NULLs
函数,但出现错误:
错误:找不到函数“ delete.NULLs”
答案 0 :(得分:4)
我们可以使用discard
library(purrr)
discard( lst1, ~is.vector(.x) || is.null(.x)|is_tibble(.x) )
编辑:来自@ArtemSokolov的评论
或者来自base R
out <- Filter(function(x) !(is.vector(x) | is.null(x) |is_tibble(x)), lst1)
out
#[[1]]
# col1
#1 1
#2 2
#3 3
#[[2]]
# A B
#1 1 2
#2 2 3
#3 3 4
#4 4 5
#5 5 6
在delete.NULLs
中找不到base R
函数。但是,可以结合使用is.null
和否定(!
)来创建它。
lst1 <- list(data.frame(col1 = 1:3), NULL, tibble(col1 = 1:5,
col2 = 2:6), NA, data.frame(A = 1:5, B = 2:6))
答案 1 :(得分:1)
使用@akrun数据:
lst1[unlist(lapply(lst1, function(x) !(is.null(x) | is_tibble(x))))]
关于您对NA
的问题:
lst1 <- list(data.frame(col1 = 1:3), NULL, tibble(col1 = 1:5,
col2 = 2:6), data.frame(A = 1:5, B = 2:6), NA)
lst <-lst1[unlist(lapply(lst1, function(x) !(is.null(x) | is_tibble(x))))]
lst<-lst[!is.na(lst)]