And: And

Description Usage Arguments Value Methods (by class) See Also Examples

Description

Logical AND of two or more expressions.

Usage

1
2
3
4
5
6
7
And(object, ...)

## S4 method for signature '.compoundExpr'
And(object, ...)

## S4 method for signature '.compoundExpr,.compoundExpr'
e1 & e2

Arguments

object

An object to include within the ANDed expression.

...

Additional objects to include within the ANDed expression.

e1

first expression

e2

second expression

Value

An object of class andExpr

Methods (by class)

See Also

Other boolean functions: Not, Or, xor

Examples

1
purchased_on_mobile <- Expr(~deviceCategory == "mobile") & Expr(~transactions > 0)

ganalytics documentation built on May 2, 2019, 8:34 a.m.