Operator which tests whether vector or element x is not included in vector y. Equivalent to '!(x
1 | x %notin% y
|
1 2 3 4 5 6 7 | a <- c(1,2,3,4,5)
3 %in% a
3 %notin% a
3 %!in% a
6 %in% a
6 %notin% a
6 %!in% a
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.