Description Usage Arguments Value Examples
These operators work like == or != but they handle comparison with NA
values. 1 %===% NA is FALSE and NA %===% NA is TRUE.
| 1 2 3 | x %===% y
x %!==% y
 | 
| x, y | vectors to be compared. They must have the same length. | 
%===% returns TRUE wherever is x[i] the same as y[i]
and %!==% returns FALSE wherever is x[i] the same as y[i].
| 1 2 3 4 5 6 7 8 9 10 11 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.