r 检查列表中的项目来自http://stackoverflow.com/questions/3485456/useful-little-functions-in-r #r

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r 检查列表中的项目来自http://stackoverflow.com/questions/3485456/useful-little-functions-in-r #r相关的知识,希望对你有一定的参考价值。

setdiff2 <- function(x,y) {
    #returns a list of the elements of x that are not in y 
     #and the elements of y that are not in x (not the same thing...)

    Xdiff = setdiff(x,y)
    Ydiff = setdiff(y,x)
    list(X_not_in_Y=Xdiff, Y_not_in_X=Ydiff)
}

以上是关于r 检查列表中的项目来自http://stackoverflow.com/questions/3485456/useful-little-functions-in-r #r的主要内容,如果未能解决你的问题,请参考以下文章

检查列表中的对象是不是存在,如果在 R 中不存在则将其删除

布尔列表检查列表中的每个项目是不是为假

检查列表中的所有项目是不是相同

在列表视图上检查项目时启动新活动

R:在列表中模式的grepl之后粘贴并组合来自ifelse的多个输出

如何自动检查以前检查的项目?