我希望有一种简单的方法可以做到这一点但是在搜索后找不到答案。我有一个列表,想要删除特定类的元素。
例如说我有清单
tempList <- list(2,4,'a', 7, 'f')
如何删除所有字符条目,只留下2,4和7的列表。
提前致谢
答案 0 :(得分:7)
尝试
> tempList[!sapply(tempList, function(x) class(x) == "character")]
[[1]]
[1] 2
[[2]]
[1] 4
[[3]]
[1] 7
请注意,这是等效的。
tempList[sapply(tempList, function(x) class(x) != "character")]
如果你需要经常使用它,你可以把它变成一个函数。
classlist <- function(x) {
sapply(x, class)
}
tempList[classlist(tempList) != "character"]
或
classlist2 <- function(x) {
x[!sapply(x, function(m) class(m) == "character")]
}
classlist2(tempList)
答案 1 :(得分:3)
Filter(is.numeric, tempList)
是一种整洁,实用的写作方式。