powered by
Not inverts an expression, i.e. logical NOT.
Not
Not(object)# S4 method for .comparator Not(object)# S4 method for .comparator !(x)# S4 method for .expr Not(object)# S4 method for .expr !(x)# S4 method for orExpr Not(object)# S4 method for orExpr !(x)# S4 method for .gaSegmentFilter Not(object)# S4 method for .gaSegmentFilter !(x)
# S4 method for .comparator Not(object)
# S4 method for .comparator !(x)
# S4 method for .expr Not(object)
# S4 method for .expr !(x)
# S4 method for orExpr Not(object)
# S4 method for orExpr !(x)
# S4 method for .gaSegmentFilter Not(object)
# S4 method for .gaSegmentFilter !(x)
An object to get the logical inverse of.
the object to return the logical inverse of.
.comparator: Return the inverse of the supplied comparison operator.
.comparator
.comparator: Return the inverse of the supplied comparator.
.expr: Invert the comparator of a condition expression.
.expr
.expr: Invert the comparator of the condition expression.
orExpr: Invert an OR expression using De Morgan's Theorem.
orExpr
.gaSegmentFilter: Invert the negation of a segment filter condition, i.e. include <-> exclude
.gaSegmentFilter
Other boolean functions: And, Or, xor
And
Or
xor
# NOT RUN { source_matches_google <- Expr(~source %matches% "google") source_not_matching_google <- Not(source_matches_google) identical(source_not_matching_google, !source_matches_google) # }
Run the code above in your browser using DataLab