I have the two big and small list. I want to know which of the elements in big list are not in smaller list. The list consists of property
([1] "character" "vector" "data.frameRowLabels"
[4] "SuperClassMethod"
Here is small example and error I am getting
A <- c("A", "B", "C", "D")
B <- c("A", "B", "C")
new <- A[!B]
Error in !B : invalid argument type
The expected output is new <- c("D")
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…