R, whether all the elements of X are present in Y

前端 未结 3 1922
忘掉有多难
忘掉有多难 2021-01-20 23:26

In R, how do you test for elements of one vector NOT present in another vector?

X <- c(\'a\',\'b\',\'c\',\'d\')
Y <- c(\'b\', \'e\', \'a\',\'d\',\'c\',\'f\         


        
3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-21 00:13

    You can use all and %in% to test if all values of X are also in Y:

    all(X %in% Y)
    #[1] TRUE
    

提交回复
热议问题